summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStephen Berman <stephen.berman@gmx.net>2021-08-16 19:13:53 +0200
committerStephen Berman <stephen.berman@gmx.net>2021-08-16 19:13:53 +0200
commitb21c9b0816e9bb923e00d6e69eed7c4341850dd0 (patch)
tree04fed8de6b57aed7b50f64b38d76d0d22dab7ee7 /doc
parentf0ef1e971d200940f5ebf1d50707112df659da8e (diff)
downloademacs-b21c9b0816e9bb923e00d6e69eed7c4341850dd0.tar.gz
Add Command Modes to Elisp manual menu and add index entries
* doc/lispref/commands.texi (Command Modes): Add index entries. * doc/lispref/elisp.texi (Top): Add entry for the Command Modes node to the detailed node listing.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/commands.texi3
-rw-r--r--doc/lispref/elisp.texi1
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index b4a8b733a0b..6d450998673 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -601,6 +601,9 @@ Put them into three windows, selecting the last one."
@node Command Modes
@subsection Specifying Modes For Commands
+@cindex commands, mode-specific
+@cindex commands, specify as mode-specific
+@cindex mode-specific commands
Many commands in Emacs are general, and not tied to any specific mode.
For instance, @kbd{M-x kill-region} can be used in pretty much any
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 8b440c79774..337c71c2956 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -788,6 +788,7 @@ Defining Commands
* Interactive Codes:: The standard letter-codes for reading arguments
in various ways.
* Interactive Examples:: Examples of how to read interactive arguments.
+* Command Modes:: Specifying that commands are for a specific mode.
* Generic Commands:: Select among command alternatives.