Mercurial > emacs
changeset 85140:caa57db87d2a
(describe-variable): Add missing " " for multiline
obsolescence info and missing EOL after global value.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 10 Oct 2007 19:18:53 +0000 |
parents | 8ba0e30716a5 |
children | b16f7408cd3f |
files | lisp/ChangeLog lisp/help-fns.el |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Oct 10 18:52:45 2007 +0000 +++ b/lisp/ChangeLog Wed Oct 10 19:18:53 2007 +0000 @@ -1,3 +1,8 @@ +2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca> + + * help-fns.el (describe-variable): Add missing " " for multiline + obsolescence info and missing EOL after global value. + 2007-10-10 Eric S. Raymond <esr@snark.thyrsus.com> * add-log.el:
--- a/lisp/help-fns.el Wed Oct 10 18:52:45 2007 +0000 +++ b/lisp/help-fns.el Wed Oct 10 19:18:53 2007 +0000 @@ -565,7 +565,8 @@ ;; See previous comment for this function. ;; (help-xref-on-pp from (point)) (if (< (point) (+ from 20)) - (delete-region (1- from) from))))))) + (delete-region (1- from) from)))))) + (terpri)) ;; If the value is large, move it to the end. (with-current-buffer standard-output @@ -617,7 +618,7 @@ (setq extra-line t) (princ " This variable is obsolete") (if (cdr obsolete) (princ (format " since %s" (cdr obsolete)))) - (princ ";") (terpri) + (princ ";\n ") (princ (if (stringp (car obsolete)) (car obsolete) (format "use `%s' instead." (car obsolete)))) (terpri))