diff options
| author | Glenn Morris | 2009-12-07 06:21:27 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-12-07 06:21:27 +0000 |
| commit | 5fa9d1ecf496e0c20ee0f263c64c97c40b9cab35 (patch) | |
| tree | 90c0af32eaacd505fac687e513e2d680daa93bfe | |
| parent | 5e9fde5e5991e89ccb4c88bf57b6cbfb9da18b25 (diff) | |
| download | emacs-5fa9d1ecf496e0c20ee0f263c64c97c40b9cab35.tar.gz emacs-5fa9d1ecf496e0c20ee0f263c64c97c40b9cab35.zip | |
Ulrich Mueller <ulm at gentoo.org>
(byte-compile-insert-header): Put the version number comment back on
its own line, for easier parsing by external tools.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ca5bc660b26..2d2d938639a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-12-07 Ulrich Mueller <ulm@gentoo.org> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version | ||
| 4 | number comment back on its own line, for easier parsing. | ||
| 5 | |||
| 1 | 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | Make it work for non-file buffers (bug#5102). | 8 | Make it work for non-file buffers (bug#5102). |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index c633f7f6567..b8afe55f028 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1894,7 +1894,8 @@ Call from the source buffer." | |||
| 1894 | (concat (user-login-name) "@" (system-name))) | 1894 | (concat (user-login-name) "@" (system-name))) |
| 1895 | " on " (current-time-string) "\n" | 1895 | " on " (current-time-string) "\n" |
| 1896 | ";;; from file " filename "\n" | 1896 | ";;; from file " filename "\n" |
| 1897 | ";;; in Emacs version " emacs-version ", with" | 1897 | ";;; in Emacs version " emacs-version "\n" |
| 1898 | ";;; with" | ||
| 1898 | (cond | 1899 | (cond |
| 1899 | ((eq optimize 'source) " source-level optimization only") | 1900 | ((eq optimize 'source) " source-level optimization only") |
| 1900 | ((eq optimize 'byte) " byte-level optimization only") | 1901 | ((eq optimize 'byte) " byte-level optimization only") |