]> code.delx.au - gnu-emacs/commitdiff
(describe-prefix-bindings): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sun, 4 Jul 1993 18:55:54 +0000 (18:55 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 4 Jul 1993 18:55:54 +0000 (18:55 +0000)
lisp/help.el

index a88b14945c2129cdf92068f6b31b3c9fae4cc484..71be8f17a47dca863f1ef7f2e6f380766c3a655d 100644 (file)
@@ -210,6 +210,9 @@ describes the minor mode."
     (recenter 0)))
 
 (defun describe-prefix-bindings ()
+  "Describe the bindings of the prefix used to reach this command.
+The prefix described consists of all but the last event
+of the key sequence that ran this command."
   (interactive)
   (let* ((key (this-command-keys))
         (prefix (make-vector (1- (length key)) nil))
@@ -219,6 +222,8 @@ describes the minor mode."
       (aset prefix i (aref key i))
       (setq i (1+ i)))
     (describe-bindings prefix)))
+;; Make C-h after a prefix, when not specifically bound, 
+;; run describe-prefix-bindings.
 (setq prefix-help-command 'describe-prefix-bindings)
 
 (defun view-emacs-news ()