aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/help.el8
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 70951e021b9..82afa023f22 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -477,11 +477,9 @@ If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
477 (key-desc (key-description key))) 477 (key-desc (key-description key)))
478 (if (or (null defn) (integerp defn)) 478 (if (or (null defn) (integerp defn))
479 (princ (format "%s is undefined" key-desc)) 479 (princ (format "%s is undefined" key-desc))
480 (princ (format (if insert 480 (princ (format (if (windowp window)
481 "`%s' (`%s')" 481 "%s at that spot runs the command %s"
482 (if (windowp window) 482 "%s runs the command %s")
483 "%s at that spot runs the command %s"
484 "%s runs the command %s"))
485 key-desc 483 key-desc
486 (if (symbolp defn) defn (prin1-to-string defn))))))))) 484 (if (symbolp defn) defn (prin1-to-string defn)))))))))
487 485