diff options
| author | Richard M. Stallman | 1994-05-10 07:24:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-10 07:24:27 +0000 |
| commit | a1fd42c0c24a52df360d45252bd1e44253ae31b3 (patch) | |
| tree | 96e1af364865d9f8a286754027719ebd9b0b9836 /src | |
| parent | 1ff3a40d526c686f9d468bb83f82181e060dea34 (diff) | |
| download | emacs-a1fd42c0c24a52df360d45252bd1e44253ae31b3.tar.gz emacs-a1fd42c0c24a52df360d45252bd1e44253ae31b3.zip | |
(syms_of_keyboard): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 2cfc6895977..910bbf68da7 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -6067,11 +6067,21 @@ Buffer modification stores t in this variable."); | |||
| 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, |