diff options
| author | Richard M. Stallman | 2001-11-05 03:40:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-05 03:40:14 +0000 |
| commit | cf24f894b0e7410933ff7fc6e10469d39d281d4f (patch) | |
| tree | ecd0933ba171e11688658fa7206cfd0d4327cbc8 /src | |
| parent | 052d59fc58fc81d7fb3aa37041ec4b477701e21b (diff) | |
| download | emacs-cf24f894b0e7410933ff7fc6e10469d39d281d4f.tar.gz emacs-cf24f894b0e7410933ff7fc6e10469d39d281d4f.zip | |
(echo-area-clear-hook): Undo Oct 29 change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 623dd1516dd..4557b596dd7 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -437,7 +437,7 @@ Lisp_Object Vdeactivate_mark; | |||
| 437 | Lisp_Object Vlucid_menu_bar_dirty_flag; | 437 | Lisp_Object Vlucid_menu_bar_dirty_flag; |
| 438 | Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook; | 438 | Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook; |
| 439 | 439 | ||
| 440 | Lisp_Object Qecho_area_clear_hook, Vecho_area_clear_hook; | 440 | Lisp_Object Qecho_area_clear_hook; |
| 441 | 441 | ||
| 442 | /* Hooks to run before and after each command. */ | 442 | /* Hooks to run before and after each command. */ |
| 443 | Lisp_Object Qpre_command_hook, Vpre_command_hook; | 443 | Lisp_Object Qpre_command_hook, Vpre_command_hook; |
| @@ -10282,9 +10282,6 @@ syms_of_keyboard () | |||
| 10282 | Qpost_command_idle_hook = intern ("post-command-idle-hook"); | 10282 | Qpost_command_idle_hook = intern ("post-command-idle-hook"); |
| 10283 | staticpro (&Qpost_command_idle_hook); | 10283 | staticpro (&Qpost_command_idle_hook); |
| 10284 | 10284 | ||
| 10285 | Qecho_area_clear_hook = intern ("echo-area-clear-hook"); | ||
| 10286 | staticpro (&Qecho_area_clear_hook); | ||
| 10287 | |||
| 10288 | Qdeferred_action_function = intern ("deferred-action-function"); | 10285 | Qdeferred_action_function = intern ("deferred-action-function"); |
| 10289 | staticpro (&Qdeferred_action_function); | 10286 | staticpro (&Qdeferred_action_function); |
| 10290 | 10287 | ||
| @@ -10724,9 +10721,12 @@ This feature is obsolete; use idle timers instead. See `etc/NEWS'. */); | |||
| 10724 | This is measured in microseconds. */); | 10721 | This is measured in microseconds. */); |
| 10725 | post_command_idle_delay = 100000; | 10722 | post_command_idle_delay = 100000; |
| 10726 | 10723 | ||
| 10727 | DEFVAR_LISP ("echo-area-clear-hook", &Vecho_area_clear_hook, | 10724 | #if 0 |
| 10725 | DEFVAR_LISP ("echo-area-clear-hook", ..., | ||
| 10728 | doc: /* Normal hook run when clearing the echo area. */); | 10726 | doc: /* Normal hook run when clearing the echo area. */); |
| 10729 | Vecho_area_clear_hook = Qnil; | 10727 | #endif |
| 10728 | Qecho_area_clear_hook = intern ("echo-area-clear-hook"); | ||
| 10729 | SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil); | ||
| 10730 | 10730 | ||
| 10731 | DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag, | 10731 | DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag, |
| 10732 | doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */); | 10732 | doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */); |