diff options
author | Michael Heerdegen <michael_heerdegen@web.de> | 2018-12-08 22:21:23 +0100 |
---|---|---|
committer | Michael Heerdegen <michael_heerdegen@web.de> | 2018-12-08 22:42:08 +0100 |
commit | 287f86d360e183839a60ee6a9e2bbb664fcc8a20 (patch) | |
tree | 16cd8661b26f6215182d1818268447173c603317 /lisp/emacs-lisp | |
parent | a65c0929ebd6f1980fe0f493a7d623aac63a34bd (diff) | |
download | emacs-287f86d360e183839a60ee6a9e2bbb664fcc8a20.tar.gz emacs-287f86d360e183839a60ee6a9e2bbb664fcc8a20.tar.bz2 emacs-287f86d360e183839a60ee6a9e2bbb664fcc8a20.zip |
Fix quote in the copyright skeleton
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.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/copyright.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/copyright.el b/lisp/emacs-lisp/copyright.el index 54d9aa01189..2f29c196964 100644 --- a/lisp/emacs-lisp/copyright.el +++ b/lisp/emacs-lisp/copyright.el @@ -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) |