Mercurial > emacs
comparison src/keyboard.c @ 7433:cc5e8709ab89
(syms_of_keyboard): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 10 May 1994 07:24:27 +0000 |
parents | e14086d8ba6f |
children | 5589126476ca |
comparison
equal
deleted
inserted
replaced
7432:d7a5151c87b4 | 7433:cc5e8709ab89 |
---|---|
6065 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal, | 6065 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal, |
6066 "Temporary storage of pre-command-hook or post-command-hook."); | 6066 "Temporary storage of pre-command-hook or post-command-hook."); |
6067 Vcommand_hook_internal = Qnil; | 6067 Vcommand_hook_internal = Qnil; |
6068 | 6068 |
6069 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook, | 6069 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook, |
6070 "Normal hook run before each command is executed."); | 6070 "Normal hook run before each command is executed.\n\ |
6071 While the hook is run, its value is temporarily set to nil\n\ | |
6072 to avoid an unbreakable infinite loop if a hook function gets an error.\n\ | |
6073 As a result, a hook function cannot straightforwardly alter the value of\n\ | |
6074 `pre-command-hook'. See the Emacs Lisp manual for a way of\n\ | |
6075 implementing hook functions that alter the set of hook functions."); | |
6071 Vpre_command_hook = Qnil; | 6076 Vpre_command_hook = Qnil; |
6072 | 6077 |
6073 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook, | 6078 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook, |
6074 "Normal hook run after each command is executed."); | 6079 "Normal hook run after each command is executed.\n\ |
6080 While the hook is run, its value is temporarily set to nil\n\ | |
6081 to avoid an unbreakable infinite loop if a hook function gets an error.\n\ | |
6082 As a result, a hook function cannot straightforwardly alter the value of\n\ | |
6083 `post-command-hook'. See the Emacs Lisp manual for a way of\n\ | |
6084 implementing hook functions that alter the set of hook functions."); | |
6075 Vpost_command_hook = Qnil; | 6085 Vpost_command_hook = Qnil; |
6076 | 6086 |
6077 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag, | 6087 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag, |
6078 "t means menu bar, specified Lucid style, needs to be recomputed."); | 6088 "t means menu bar, specified Lucid style, needs to be recomputed."); |
6079 Vlucid_menu_bar_dirty_flag = Qnil; | 6089 Vlucid_menu_bar_dirty_flag = Qnil; |