From c8f98e6dac31f153d5ce9e394fcb1521bc51aa9a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 30 Oct 1995 21:18:39 +0000 Subject: [PATCH] (describe-variable): Don't call substitute-command-keys. --- lisp/help.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) -- 2.39.2