]> git.eshelyaron.com Git - emacs.git/commitdiff
Ulrich Mueller <ulm at gentoo.org>
authorGlenn Morris <rgm@gnu.org>
Mon, 7 Dec 2009 06:21:27 +0000 (06:21 +0000)
committerGlenn Morris <rgm@gnu.org>
Mon, 7 Dec 2009 06:21:27 +0000 (06:21 +0000)
(byte-compile-insert-header): Put the version number comment back on
its own line, for easier parsing by external tools.

lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index ca5bc660b262e5a136a4c3f412f7f2055b965964..2d2d938639a70136d3785ff88037115add637130 100644 (file)
@@ -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).
index c633f7f65676da69638235a2261c81fc65d2ba01..b8afe55f028a894de586be93eb0aa3fccf43eb33 100644 (file)
@@ -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")