emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114876: * lisp/emacs-lisp/autoload.el (autoload-gen


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114876: * lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads):
Date: Wed, 30 Oct 2013 20:03:11 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114876
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2013-10-30 16:03:07 -0400
message:
  * lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads):
  `newline' does not respect `standard-output', so use `princ'.
  
  Otherwise you can get \n inserted in the wrong buffer, eg
  http://lists.gnu.org/archive/html/emacs-diffs/2013-10/msg00379.html
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/autoload.el    autoload.el-20091113204419-o5vbwnq5f7feedwu-397
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-10-30 18:35:19 +0000
+++ b/lisp/ChangeLog    2013-10-30 20:03:07 +0000
@@ -1,3 +1,8 @@
+2013-10-30  Glenn Morris  <address@hidden>
+
+       * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
+       `newline' does not respect `standard-output', so use `princ'.
+
 2013-10-30  Alp Aker  <address@hidden>
 
        Ensure unmarking in buffer menu clears 'S' marks.  (Bug#15761)

=== modified file 'lisp/emacs-lisp/autoload.el'
--- a/lisp/emacs-lisp/autoload.el       2013-07-22 23:21:14 +0000
+++ b/lisp/emacs-lisp/autoload.el       2013-10-30 20:03:07 +0000
@@ -553,7 +553,7 @@
                           (princ `(push (purecopy
                                              ',(cons (intern package) version))
                                         package--builtin-versions))
-                         (newline)))))
+                         (princ "\n")))))
 
               (goto-char (point-min))
               (while (not (eobp))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]