Mercurial > emacs
changeset 106468:838914b06ad0
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.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Mon, 07 Dec 2009 06:21:27 +0000 |
parents | 0314d1c68b88 |
children | ad4147368f52 |
files | lisp/ChangeLog lisp/emacs-lisp/bytecomp.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Dec 07 02:37:42 2009 +0000 +++ b/lisp/ChangeLog Mon Dec 07 06:21:27 2009 +0000 @@ -1,3 +1,8 @@ +2009-12-07 Ulrich Mueller <ulm@gentoo.org> + + * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version + number comment back on its own line, for easier parsing. + 2009-12-07 Stefan Monnier <monnier@iro.umontreal.ca> Make it work for non-file buffers (bug#5102).
--- a/lisp/emacs-lisp/bytecomp.el Mon Dec 07 02:37:42 2009 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Mon Dec 07 06:21:27 2009 +0000 @@ -1894,7 +1894,8 @@ (concat (user-login-name) "@" (system-name))) " on " (current-time-string) "\n" ";;; from file " filename "\n" - ";;; in Emacs version " emacs-version ", with" + ";;; in Emacs version " emacs-version "\n" + ";;; with" (cond ((eq optimize 'source) " source-level optimization only") ((eq optimize 'byte) " byte-level optimization only")