]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix quote in the copyright skeleton
authorMichael Heerdegen <michael_heerdegen@web.de>
Sat, 8 Dec 2018 21:21:23 +0000 (22:21 +0100)
committerMichael Heerdegen <michael_heerdegen@web.de>
Sat, 8 Dec 2018 21:42:08 +0000 (22:42 +0100)
Revert replacing a backquote in the "copyright" skeleton with a quote
done in "Replace insignificant backquotes" which broke the skeleton.

* lisp/emacs-lisp/copyright.el (copyright): Restore the correct
version of the skeleton that used a backquote.

lisp/emacs-lisp/copyright.el

index 54d9aa0118998e5095993facf27b239d8e4ea686..2f29c196964579a30c8d7937e88aa2bce695aaa1 100644 (file)
@@ -347,7 +347,7 @@ independently replaces consecutive years with a range."
   "Insert a copyright by $ORGANIZATION notice at cursor."
   "Company: "
   comment-start
-  "Copyright (C) " '(format-time-string "%Y") " by "
+  "Copyright (C) " `(format-time-string "%Y") " by "
   (or (getenv "ORGANIZATION")
       str)
   '(if (copyright-offset-too-large-p)