(describe-variable): Remove newlines from void variable output.

This commit is contained in:
John Paul Wallington 2006-01-12 22:31:30 +00:00
parent 48391a5368
commit e75b11f846
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2006-01-12 John Paul Wallington <jpw@pobox.com>
* help-fns.el (describe-variable): Remove newlines from void
variable output.
2006-01-13 Nick Roberts <nickrob@snap.net.nz>
* wdired.el (wdired-mode-map): Add help echo for

View file

@ -554,10 +554,10 @@ it is displayed along with the global value."
(help-xref-button 1 'help-variable-def
variable file-name)))
(if valvoid
(princ "It is void as a variable.\n")
(princ "It is void as a variable.")
(princ "Its ")))
(if valvoid
(princ " is void as a variable.\n")
(princ " is void as a variable.")
(princ "'s "))))
(if valvoid
nil