(describe-variable): Remove newlines from void variable output.
This commit is contained in:
parent
48391a5368
commit
e75b11f846
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue