# HG changeset patch # User Richard M. Stallman # Date 911897787 0 # Node ID eac4b475c2eaeb02e881e769f225098d2771ddf7 # Parent e6bdd4559dc72e42d91a012c214ed01d1bb9a7dd (syms_of_keyboard): Doc fix. diff -r e6bdd4559dc7 -r eac4b475c2ea src/keyboard.c --- a/src/keyboard.c Tue Nov 24 04:55:16 1998 +0000 +++ b/src/keyboard.c Tue Nov 24 08:56:27 1998 +0000 @@ -9290,12 +9290,16 @@ DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook, "Normal hook run before each command is executed.\n\ -Errors running the hook are caught and ignored."); +If an unhandled error happens in running this hook,\n\ +the hook value is set to nil, since otherwise the error\n\ +might happen repeatedly and make Emacs nonfunctional."); Vpre_command_hook = Qnil; DEFVAR_LISP ("post-command-hook", &Vpost_command_hook, "Normal hook run after each command is executed.\n\ -Errors running the hook are caught and ignored."); +If an unhandled error happens in running this hook,\n\ +the hook value is set to nil, since otherwise the error\n\ +might happen repeatedly and make Emacs nonfunctional."); Vpost_command_hook = Qnil; DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,