aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1993-08-06 20:29:23 +0000
committerRoland McGrath1993-08-06 20:29:23 +0000
commite0568e86372b137dd87b058d0d2b43411c9993d9 (patch)
treee46b6d7843c8750239ab26b8159117b5ed60362b
parent21ee8c42cf64dccf718454069844d9b5018dc5c2 (diff)
downloademacs-e0568e86372b137dd87b058d0d2b43411c9993d9.tar.gz
emacs-e0568e86372b137dd87b058d0d2b43411c9993d9.zip
(Info-goto-emacs-command-node, Info-goto-emacs-key-command-node): Doc fix.
-rw-r--r--lisp/info.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 83247a93325..adbc1930c2d 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -1,6 +1,6 @@
1;;; info.el --- info package for Emacs. 1;;; info.el --- info package for Emacs.
2 2
3;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1992, 1993 Free Software Foundation, Inc.
4 4
5;; Maintainer: FSF 5;; Maintainer: FSF
6;; Keywords: help 6;; Keywords: help
@@ -1419,7 +1419,8 @@ The locations are of the format used in Info-history, i.e.
1419 1419
1420;;;###autoload 1420;;;###autoload
1421(defun Info-goto-emacs-command-node (command) 1421(defun Info-goto-emacs-command-node (command)
1422 "Go to the Info node in the Emacs manual for command COMMAND." 1422 "Go to the Info node in the Emacs manual for command COMMAND.
1423The command is found by looking up in Emacs manual's Command Index."
1423 (interactive "CFind documentation for command: ") 1424 (interactive "CFind documentation for command: ")
1424 (or (commandp command) 1425 (or (commandp command)
1425 (signal 'wrong-type-argument (list 'commandp command))) 1426 (signal 'wrong-type-argument (list 'commandp command)))
@@ -1448,7 +1449,8 @@ The locations are of the format used in Info-history, i.e.
1448;;;###autoload 1449;;;###autoload
1449(defun Info-goto-emacs-key-command-node (key) 1450(defun Info-goto-emacs-key-command-node (key)
1450 "Go to the Info node in the Emacs manual the command bound to KEY, a string. 1451 "Go to the Info node in the Emacs manual the command bound to KEY, a string.
1451Interactively, if the binding is execute-extended-command, a command is read." 1452Interactively, if the binding is execute-extended-command, a command is read.
1453The command is found by looking up in Emacs manual's Command Index."
1452 (interactive "kFind documentation for key:") 1454 (interactive "kFind documentation for key:")
1453 (let ((command (key-binding key))) 1455 (let ((command (key-binding key)))
1454 (cond ((null command) 1456 (cond ((null command)