From: Richard M. Stallman Date: Sun, 22 May 2005 15:52:51 +0000 (+0000) Subject: (describe-key): Move print-help-return-message call out of conditional. X-Git-Tag: ttn-vms-21-2-B4~61 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1b12fa9dc4be9a4fec1e6cdfdd12b146ce1f3ae9;p=emacs.git (describe-key): Move print-help-return-message call out of conditional. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f8a2a4ac7ba..53bccfbeb04 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2005-05-22 Richard M. Stallman + * help.el (describe-key): Move print-help-return-message call + out of conditional. + * progmodes/etags.el (list-tags): Use with-no-warnings. * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings. diff --git a/lisp/help.el b/lisp/help.el index 76fc43d63ef..3323c329c97 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -698,8 +698,8 @@ the last key hit are used." (princ " runs the command ") (prin1 defn) (princ "\n which is ") - (describe-function-1 defn)))) - (print-help-return-message)))))))) + (describe-function-1 defn))))) + (print-help-return-message))))))) (defun describe-mode (&optional buffer)