diff options
| author | Richard M. Stallman | 1998-11-24 08:56:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-11-24 08:56:27 +0000 |
| commit | 307958d6cbef7ed8d412004a57057a1eeb1de3cd (patch) | |
| tree | fb4cedbd394d19a78060acf5d14aae22d97c39df /src | |
| parent | 69eca94c245a35d5233be7be06cd9801c70bcf39 (diff) | |
| download | emacs-307958d6cbef7ed8d412004a57057a1eeb1de3cd.tar.gz emacs-307958d6cbef7ed8d412004a57057a1eeb1de3cd.zip | |
(syms_of_keyboard): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index adfda2e9bcb..a81bb5b04aa 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -9290,12 +9290,16 @@ Buffer modification stores t in this variable."); | |||
| 9290 | 9290 | ||
| 9291 | DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook, | 9291 | DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook, |
| 9292 | "Normal hook run before each command is executed.\n\ | 9292 | "Normal hook run before each command is executed.\n\ |
| 9293 | Errors running the hook are caught and ignored."); | 9293 | If an unhandled error happens in running this hook,\n\ |
| 9294 | the hook value is set to nil, since otherwise the error\n\ | ||
| 9295 | might happen repeatedly and make Emacs nonfunctional."); | ||
| 9294 | Vpre_command_hook = Qnil; | 9296 | Vpre_command_hook = Qnil; |
| 9295 | 9297 | ||
| 9296 | DEFVAR_LISP ("post-command-hook", &Vpost_command_hook, | 9298 | DEFVAR_LISP ("post-command-hook", &Vpost_command_hook, |
| 9297 | "Normal hook run after each command is executed.\n\ | 9299 | "Normal hook run after each command is executed.\n\ |
| 9298 | Errors running the hook are caught and ignored."); | 9300 | If an unhandled error happens in running this hook,\n\ |
| 9301 | the hook value is set to nil, since otherwise the error\n\ | ||
| 9302 | might happen repeatedly and make Emacs nonfunctional."); | ||
| 9299 | Vpost_command_hook = Qnil; | 9303 | Vpost_command_hook = Qnil; |
| 9300 | 9304 | ||
| 9301 | DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook, | 9305 | DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook, |