# HG changeset patch # User Luc Teirlinck # Date 1091288606 0 # Node ID a6cb62c42cecfbcbcd07c0422b8b079c1944c41b # Parent 519665ad790627293d8734abbed361b25dbe8704 (enable-command, disable-command): Doc fixes. diff -r 519665ad7906 -r a6cb62c42cec lisp/novice.el --- a/lisp/novice.el Sat Jul 31 09:23:36 2004 +0000 +++ b/lisp/novice.el Sat Jul 31 15:43:26 2004 +0000 @@ -104,7 +104,8 @@ ;;;###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 @@ ;;;###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))