diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-03-12 09:09:48 +0100 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-03-12 09:09:48 +0100 |
commit | f73c62765f57170b66c9de2509709ae1e989fd27 (patch) | |
tree | c60ef096f1a40a4b9bad426a639b00e1d75f848c /create-license.el | |
parent | 6cfb5e3331b95764c5738af8b970fb599a1b83e2 (diff) |
Allow customization of the license file name
Diffstat (limited to 'create-license.el')
-rw-r--r-- | create-license.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/create-license.el b/create-license.el index b1c2db3..7039cdd 100644 --- a/create-license.el +++ b/create-license.el @@ -29,5 +29,11 @@ :group 'emacs :prefix "create-license-") +(defcustom create-license-file-name "COPYING" + "The name of the license file." + :group 'create-license + :type 'string + :safe 'stringp) + (provide 'create-license) ;;; create-license.el ends here |