diff options
| author | Luc Teirlinck | 2004-07-31 15:43:26 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-07-31 15:43:26 +0000 |
| commit | 7a4d608f415d1a48af1c86624d57a5e86e370daf (patch) | |
| tree | e4c6571bc2d6ce48736b351e9a6c2a387647ab93 | |
| parent | d9a68b6a5193dacd2e44ab7e4fe350420adc921a (diff) | |
| download | emacs-7a4d608f415d1a48af1c86624d57a5e86e370daf.tar.gz emacs-7a4d608f415d1a48af1c86624d57a5e86e370daf.zip | |
(enable-command, disable-command): Doc fixes.
| -rw-r--r-- | lisp/novice.el | 6 |
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. |
| 107 | The user's .emacs file is altered so that this will apply | 107 | COMMAND must be a symbol. |
| 108 | This command alters the user's .emacs file so that this will apply | ||
| 108 | to future sessions." | 109 | to 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. |
| 144 | The user's .emacs file is altered so that this will apply | 145 | COMMAND must be a symbol. |
| 146 | This command alters the user's .emacs file so that this will apply | ||
| 145 | to future sessions." | 147 | to future sessions." |
| 146 | (interactive "CDisable command: ") | 148 | (interactive "CDisable command: ") |
| 147 | (if (not (commandp command)) | 149 | (if (not (commandp command)) |