Mercurial > emacs
changeset 56569:a6cb62c42cec
(enable-command, disable-command): Doc fixes.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Sat, 31 Jul 2004 15:43:26 +0000 |
parents | 519665ad7906 |
children | 059dc717baef |
files | lisp/novice.el |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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))