summaryrefslogtreecommitdiff
path: root/lisp/novice.el
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2004-07-31 15:43:26 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2004-07-31 15:43:26 +0000
commit7a4d608f415d1a48af1c86624d57a5e86e370daf (patch)
treee4c6571bc2d6ce48736b351e9a6c2a387647ab93 /lisp/novice.el
parentd9a68b6a5193dacd2e44ab7e4fe350420adc921a (diff)
downloademacs-7a4d608f415d1a48af1c86624d57a5e86e370daf.tar.gz
(enable-command, disable-command): Doc fixes.
Diffstat (limited to 'lisp/novice.el')
-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.
;;;###autoload
(defun enable-command (command)
"Allow COMMAND to be executed without special confirmation from now on.
-The user's .emacs file is altered so that this will apply
+COMMAND must be a symbol.
+This command alters the user's .emacs file so that this will apply
to future sessions."
(interactive "CEnable command: ")
(put command 'disabled nil)
@@ -141,7 +142,8 @@ to future sessions."
;;;###autoload
(defun disable-command (command)
"Require special confirmation to execute COMMAND from now on.
-The user's .emacs file is altered so that this will apply
+COMMAND must be a symbol.
+This command alters the user's .emacs file so that this will apply
to future sessions."
(interactive "CDisable command: ")
(if (not (commandp command))