diff options
| author | Leo Liu | 2013-07-05 10:37:39 +0800 |
|---|---|---|
| committer | Leo Liu | 2013-07-05 10:37:39 +0800 |
| commit | 96eb829aa781926a66524237b266de44c564bf60 (patch) | |
| tree | 0a424877e52a99b10e36fb165c7b1a82ddcad791 | |
| parent | 9f1d94c0e67101e0f22500b6899da03908ead891 (diff) | |
| download | emacs-96eb829aa781926a66524237b266de44c564bf60.tar.gz emacs-96eb829aa781926a66524237b266de44c564bf60.zip | |
* autoinsert.el (auto-insert-alist): Default to lexical-binding.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/autoinsert.el | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7bdd21bc3e4..d0c53d4d023 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-07-05 Leo Liu <sdl.web@gmail.com> | ||
| 2 | |||
| 3 | * autoinsert.el (auto-insert-alist): Default to lexical-binding. | ||
| 4 | |||
| 1 | 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 5 | 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 6 | ||
| 3 | * frame.el (display-pixel-height, display-pixel-width) | 7 | * frame.el (display-pixel-height, display-pixel-width) |
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index c45d64e1cd9..daa654889b6 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el | |||
| @@ -164,7 +164,10 @@ If this contains a %s, that will be replaced by the matching rule." | |||
| 164 | 164 | ||
| 165 | (("\\.el\\'" . "Emacs Lisp header") | 165 | (("\\.el\\'" . "Emacs Lisp header") |
| 166 | "Short description: " | 166 | "Short description: " |
| 167 | ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str " | 167 | ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str |
| 168 | (make-string (max 2 (- 80 (current-column) 27)) ?\s) | ||
| 169 | "-*- lexical-binding: t; -*-" | ||
| 170 | " | ||
| 168 | 171 | ||
| 169 | ;; Copyright (C) " (format-time-string "%Y") " " | 172 | ;; Copyright (C) " (format-time-string "%Y") " " |
| 170 | (getenv "ORGANIZATION") | (progn user-full-name) " | 173 | (getenv "ORGANIZATION") | (progn user-full-name) " |