aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Heerdegen2018-12-08 22:21:23 +0100
committerMichael Heerdegen2018-12-08 22:42:08 +0100
commit287f86d360e183839a60ee6a9e2bbb664fcc8a20 (patch)
tree16cd8661b26f6215182d1818268447173c603317
parenta65c0929ebd6f1980fe0f493a7d623aac63a34bd (diff)
downloademacs-287f86d360e183839a60ee6a9e2bbb664fcc8a20.tar.gz
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.
-rw-r--r--lisp/emacs-lisp/copyright.el2
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."
347 "Insert a copyright by $ORGANIZATION notice at cursor." 347 "Insert a copyright by $ORGANIZATION notice at cursor."
348 "Company: " 348 "Company: "
349 comment-start 349 comment-start
350 "Copyright (C) " '(format-time-string "%Y") " by " 350 "Copyright (C) " `(format-time-string "%Y") " by "
351 (or (getenv "ORGANIZATION") 351 (or (getenv "ORGANIZATION")
352 str) 352 str)
353 '(if (copyright-offset-too-large-p) 353 '(if (copyright-offset-too-large-p)