diff options
author | Glenn Morris <rgm@gnu.org> | 2009-12-07 06:21:27 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-12-07 06:21:27 +0000 |
commit | 5fa9d1ecf496e0c20ee0f263c64c97c40b9cab35 (patch) | |
tree | 90c0af32eaacd505fac687e513e2d680daa93bfe /lisp/emacs-lisp | |
parent | 5e9fde5e5991e89ccb4c88bf57b6cbfb9da18b25 (diff) | |
download | emacs-5fa9d1ecf496e0c20ee0f263c64c97c40b9cab35.tar.gz emacs-5fa9d1ecf496e0c20ee0f263c64c97c40b9cab35.tar.bz2 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.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 2 insertions, 1 deletions
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." (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") |