mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 10:31:37 -08:00
* 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
This commit is contained in:
parent
947518dbb8
commit
4f85b47922
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2013-10-30 Glenn Morris <rgm@gnu.org>
|
||||||
|
|
||||||
|
* emacs-lisp/autoload.el (autoload-generate-file-autoloads):
|
||||||
|
`newline' does not respect `standard-output', so use `princ'.
|
||||||
|
|
||||||
2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
|
2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
|
||||||
|
|
||||||
Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
|
Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
|
||||||
|
|
|
||||||
|
|
@ -553,7 +553,7 @@ Return non-nil if and only if FILE adds no autoloads to OUTFILE
|
||||||
(princ `(push (purecopy
|
(princ `(push (purecopy
|
||||||
',(cons (intern package) version))
|
',(cons (intern package) version))
|
||||||
package--builtin-versions))
|
package--builtin-versions))
|
||||||
(newline)))))
|
(princ "\n")))))
|
||||||
|
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(while (not (eobp))
|
(while (not (eobp))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue