From e75b11f8464003c18f9764c5272a20e03ab66bbd Mon Sep 17 00:00:00 2001 From: John Paul Wallington Date: Thu, 12 Jan 2006 22:31:30 +0000 Subject: [PATCH] (describe-variable): Remove newlines from void variable output. --- lisp/ChangeLog | 5 +++++ lisp/help-fns.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6ee5582d755..ae43e2639a4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-01-12 John Paul Wallington + + * help-fns.el (describe-variable): Remove newlines from void + variable output. + 2006-01-13 Nick Roberts * wdired.el (wdired-mode-map): Add help echo for diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 78c156fa410..7be2ce48459 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 -- 2.39.2