diff options
Diffstat (limited to 'Emacs/.config/emacs/elisp/license.el')
-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))) |