summaryrefslogtreecommitdiff
path: root/lisp/options.el
diff options
context:
space:
mode:
authorBrian Preble <rassilon@gnu.org>1991-04-10 15:18:52 +0000
committerBrian Preble <rassilon@gnu.org>1991-04-10 15:18:52 +0000
commit1bb03b192669b1ccf12ee1724a9446094d6f2f7e (patch)
treef88cf394ecf912b20a0847ab55ebded6568c7144 /lisp/options.el
parent27bad853852286757a0a119aa0221e80f9616b0c (diff)
downloademacs-1bb03b192669b1ccf12ee1724a9446094d6f2f7e.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/options.el')
-rw-r--r--lisp/options.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/options.el b/lisp/options.el
index b30dc004c1c..e67346cab63 100644
--- a/lisp/options.el
+++ b/lisp/options.el
@@ -67,16 +67,17 @@ Type \\[describe-mode] in that buffer for a list of commands."
(put 'Edit-options-mode 'mode-class 'special)
(defun Edit-options-mode ()
- "Major mode for editing Emacs user option settings.
+ "\\<Edit-options-mode-map>\
+Major mode for editing Emacs user option settings.
Special commands are:
-s -- set variable point points at. New value read using minibuffer.
-x -- toggle variable, t -> nil, nil -> t.
-1 -- set variable to t.
-0 -- set variable to nil.
+\\[Edit-options-set] -- set variable point points at. New value read using minibuffer.
+\\[Edit-options-toggle] -- toggle variable, t -> nil, nil -> t.
+\\[Edit-options-t] -- set variable to t.
+\\[Edit-options-nil] -- set variable to nil.
Changed values made by these commands take effect immediately.
Each variable description is a paragraph.
-For convenience, the characters p and n move back and forward by paragraphs."
+For convenience, the characters \\[backward-paragraph] and \\[forward-paragraph] move back and forward by paragraphs."
(kill-all-local-variables)
(set-syntax-table emacs-lisp-mode-syntax-table)
(use-local-map Edit-options-mode-map)