aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-03-12 09:09:48 +0100
committerTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-03-12 09:09:48 +0100
commitf73c62765f57170b66c9de2509709ae1e989fd27 (patch)
treec60ef096f1a40a4b9bad426a639b00e1d75f848c
parent6cfb5e3331b95764c5738af8b970fb599a1b83e2 (diff)
Allow customization of the license file name
-rw-r--r--create-license.el6
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