Mercurial > emacs
changeset 13348:1569ab66932d
(describe-variable): Don't call substitute-command-keys.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 30 Oct 1995 21:18:39 +0000 |
parents | 186d80572f4f |
children | 1c9bf4febb14 |
files | lisp/help.el |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help.el Mon Oct 30 19:47:29 1995 +0000 +++ b/lisp/help.el Mon Oct 30 21:18:39 1995 +0000 @@ -627,9 +627,7 @@ (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)