From: Richard M. Stallman Date: Mon, 30 Oct 1995 21:18:39 +0000 (+0000) Subject: (describe-variable): Don't call substitute-command-keys. X-Git-Tag: emacs-19.34~2512 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c8f98e6dac31f153d5ce9e394fcb1521bc51aa9a;p=emacs.git (describe-variable): Don't call substitute-command-keys. --- diff --git a/lisp/help.el b/lisp/help.el index e416fd3d887..68c18ecd48a 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -627,9 +627,7 @@ Returns the documentation as a string, also." (princ "Documentation:") (terpri) (let ((doc (documentation-property variable 'variable-documentation))) - (if doc - (princ (substitute-command-keys doc)) - (princ "not documented as a variable."))) + (princ (or doc "not documented as a variable."))) (print-help-return-message) (save-excursion (set-buffer standard-output)