aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-11-24 08:56:27 +0000
committerRichard M. Stallman1998-11-24 08:56:27 +0000
commit307958d6cbef7ed8d412004a57057a1eeb1de3cd (patch)
treefb4cedbd394d19a78060acf5d14aae22d97c39df /src
parent69eca94c245a35d5233be7be06cd9801c70bcf39 (diff)
downloademacs-307958d6cbef7ed8d412004a57057a1eeb1de3cd.tar.gz
emacs-307958d6cbef7ed8d412004a57057a1eeb1de3cd.zip
(syms_of_keyboard): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c8
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\
9293Errors running the hook are caught and ignored."); 9293If an unhandled error happens in running this hook,\n\
9294the hook value is set to nil, since otherwise the error\n\
9295might 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\
9298Errors running the hook are caught and ignored."); 9300If an unhandled error happens in running this hook,\n\
9301the hook value is set to nil, since otherwise the error\n\
9302might 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,