aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington <[email protected]>2006-01-12 22:31:30 +0000
committerJohn Paul Wallington <[email protected]>2006-01-12 22:31:30 +0000
commite75b11f8464003c18f9764c5272a20e03ab66bbd (patch)
treecb4176569fb2c58d5edc71b8c38a2d40ef580930
parent48391a5368821b696988aed0058f07646d5939ae (diff)
(describe-variable): Remove newlines from void variable output.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/help-fns.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6ee5582d75..ae43e2639a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-12 John Paul Wallington <[email protected]>
+
+ * help-fns.el (describe-variable): Remove newlines from void
+ variable output.
+
2006-01-13 Nick Roberts <[email protected]>
* wdired.el (wdired-mode-map): Add help echo for
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index 78c156fa41..7be2ce4845 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -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