diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-17 19:08:09 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-17 19:09:41 +0000 |
commit | 251d53c22683862f4d06a414a32ce2baa001b031 (patch) | |
tree | 33082308373cebbd8b4a5816f2653a9293d8025b /Emacs/.config/emacs/elisp | |
parent | 33064aef3e93c73b6004336336184cd32b21fb86 (diff) | |
download | dotfiles-251d53c22683862f4d06a414a32ce2baa001b031.tar.gz dotfiles-251d53c22683862f4d06a414a32ce2baa001b031.tar.bz2 dotfiles-251d53c22683862f4d06a414a32ce2baa001b031.zip |
small changes
Diffstat (limited to 'Emacs/.config/emacs/elisp')
-rw-r--r-- | Emacs/.config/emacs/elisp/license.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/elisp/license.el b/Emacs/.config/emacs/elisp/license.el index 1d5d180..23bd7c0 100644 --- a/Emacs/.config/emacs/elisp/license.el +++ b/Emacs/.config/emacs/elisp/license.el @@ -25,7 +25,8 @@ "Choice of license." :type '(choice (const "MIT License") (const "GNU General Public License Version 2") - (const "Unlicense"))) + (const "Unlicense")) + :group 'license) (defconst +license/licenses-alist `(("MIT License" (,(format "MIT License @@ -443,10 +444,12 @@ program. If not, please go to <%s>." without explicit legal permission from the author \"%s\"" user-full-name))))) +;;;###autoload (defun +license/insert-complete-license () (interactive) (insert (+license/choose-copy-of-license))) +;;;###autoload (defun +license/insert-copyright-notice () (interactive) (insert (+license/copyright-notice))) |