]> code.delx.au - gnu-emacs/commitdiff
(Info-goto-emacs-command-node, Info-goto-emacs-key-command-node): Doc fix.
authorRoland McGrath <roland@gnu.org>
Fri, 6 Aug 1993 20:29:23 +0000 (20:29 +0000)
committerRoland McGrath <roland@gnu.org>
Fri, 6 Aug 1993 20:29:23 +0000 (20:29 +0000)
lisp/info.el

index 83247a93325f49d811c31c5601cf7cabb7e919f8..adbc1930c2d92ada7f3fa1204003b314a2afeb34 100644 (file)
@@ -1,6 +1,6 @@
 ;;; info.el --- info package for Emacs.
 
-;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1986, 1992, 1993 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: help
@@ -1419,7 +1419,8 @@ The locations are of the format used in Info-history, i.e.
 
 ;;;###autoload
 (defun Info-goto-emacs-command-node (command)
-  "Go to the Info node in the Emacs manual for command COMMAND."
+  "Go to the Info node in the Emacs manual for command COMMAND.
+The command is found by looking up in Emacs manual's Command Index."
   (interactive "CFind documentation for command: ")
   (or (commandp command)
       (signal 'wrong-type-argument (list 'commandp command)))
@@ -1448,7 +1449,8 @@ The locations are of the format used in Info-history, i.e.
 ;;;###autoload
 (defun Info-goto-emacs-key-command-node (key)
   "Go to the Info node in the Emacs manual the command bound to KEY, a string.
-Interactively, if the binding is execute-extended-command, a command is read."
+Interactively, if the binding is execute-extended-command, a command is read.
+The command is found by looking up in Emacs manual's Command Index."
   (interactive "kFind documentation for key:")
   (let ((command (key-binding key)))
     (cond ((null command)