aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-07-31 15:43:26 +0000
committerLuc Teirlinck2004-07-31 15:43:26 +0000
commit7a4d608f415d1a48af1c86624d57a5e86e370daf (patch)
treee4c6571bc2d6ce48736b351e9a6c2a387647ab93
parentd9a68b6a5193dacd2e44ab7e4fe350420adc921a (diff)
downloademacs-7a4d608f415d1a48af1c86624d57a5e86e370daf.tar.gz
emacs-7a4d608f415d1a48af1c86624d57a5e86e370daf.zip
(enable-command, disable-command): Doc fixes.
-rw-r--r--lisp/novice.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/novice.el b/lisp/novice.el
index 159c9a96780..1cb89066481 100644
--- a/lisp/novice.el
+++ b/lisp/novice.el
@@ -104,7 +104,8 @@ SPC to try the command just this once, but leave it disabled.
104;;;###autoload 104;;;###autoload
105(defun enable-command (command) 105(defun enable-command (command)
106 "Allow COMMAND to be executed without special confirmation from now on. 106 "Allow COMMAND to be executed without special confirmation from now on.
107The user's .emacs file is altered so that this will apply 107COMMAND must be a symbol.
108This command alters the user's .emacs file so that this will apply
108to future sessions." 109to future sessions."
109 (interactive "CEnable command: ") 110 (interactive "CEnable command: ")
110 (put command 'disabled nil) 111 (put command 'disabled nil)
@@ -141,7 +142,8 @@ to future sessions."
141;;;###autoload 142;;;###autoload
142(defun disable-command (command) 143(defun disable-command (command)
143 "Require special confirmation to execute COMMAND from now on. 144 "Require special confirmation to execute COMMAND from now on.
144The user's .emacs file is altered so that this will apply 145COMMAND must be a symbol.
146This command alters the user's .emacs file so that this will apply
145to future sessions." 147to future sessions."
146 (interactive "CDisable command: ") 148 (interactive "CDisable command: ")
147 (if (not (commandp command)) 149 (if (not (commandp command))