diff options
author | Leo Liu <sdl.web@gmail.com> | 2013-09-23 12:21:41 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2013-09-23 12:21:41 +0800 |
commit | 332153538c3268edb9154fbe29a6fdc5e012e595 (patch) | |
tree | b5af85bb6c6be2a6d9cc587826ea27be5c1029d0 /lisp | |
parent | d4a9284f20ab7463ed808b9cde2b98b4e27981a9 (diff) | |
download | emacs-332153538c3268edb9154fbe29a6fdc5e012e595.tar.gz |
* autoinsert.el (auto-insert-alist): Make the value of
lexical-binding match its file setting.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/autoinsert.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b2e09b18112..c25462dbe3a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-09-23 Leo Liu <sdl.web@gmail.com> + + * autoinsert.el (auto-insert-alist): Make the value of + lexical-binding match its file setting. + 2013-09-23 Juanma Barranquero <lekktu@gmail.com> * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument. diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index daa654889b6..3801a790374 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -166,7 +166,7 @@ If this contains a %s, that will be replaced by the matching rule." "Short description: " ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str (make-string (max 2 (- 80 (current-column) 27)) ?\s) - "-*- lexical-binding: t; -*-" + "-*- lexical-binding: t; -*-" '(setq lexical-binding t) " ;; Copyright (C) " (format-time-string "%Y") " " |