Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e0568e86
Commit
e0568e86
authored
Aug 06, 1993
by
Roland McGrath
Browse files
(Info-goto-emacs-command-node, Info-goto-emacs-key-command-node): Doc fix.
parent
21ee8c42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lisp/info.el
lisp/info.el
+5
-3
No files found.
lisp/info.el
View file @
e0568e86
;;; info.el --- info package for Emacs.
;;; 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
;; Maintainer: FSF
;; Keywords: help
;; Keywords: help
...
@@ -1419,7 +1419,8 @@ The locations are of the format used in Info-history, i.e.
...
@@ -1419,7 +1419,8 @@ The locations are of the format used in Info-history, i.e.
;;;###autoload
;;;###autoload
(
defun
Info-goto-emacs-command-node
(
command
)
(
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: "
)
(
interactive
"CFind documentation for command: "
)
(
or
(
commandp
command
)
(
or
(
commandp
command
)
(
signal
'wrong-type-argument
(
list
'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.
...
@@ -1448,7 +1449,8 @@ The locations are of the format used in Info-history, i.e.
;;;###autoload
;;;###autoload
(
defun
Info-goto-emacs-key-command-node
(
key
)
(
defun
Info-goto-emacs-key-command-node
(
key
)
"Go to the Info node in the Emacs manual the command bound to KEY, a string.
"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:"
)
(
interactive
"kFind documentation for key:"
)
(
let
((
command
(
key-binding
key
)))
(
let
((
command
(
key-binding
key
)))
(
cond
((
null
command
)
(
cond
((
null
command
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment