diff options
| author | Juanma Barranquero | 2002-07-04 10:38:00 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-04 10:38:00 +0000 |
| commit | cf9b6656ccf5d6f26d533b0a15970f15d585dffc (patch) | |
| tree | 046bc91285dcf0c7f692643f4ce98aeb48d91c69 | |
| parent | 9669f2d6d54b0e6835a01ef3b0ac462e36e09859 (diff) | |
| download | emacs-cf9b6656ccf5d6f26d533b0a15970f15d585dffc.tar.gz emacs-cf9b6656ccf5d6f26d533b0a15970f15d585dffc.zip | |
(post_command_idle_hook): Remove redundant (and inexact) obsolescence
information.
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/keyboard.c | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 91186f660ee..abaa5575b23 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-07-04 Juanma Barranquero <lektu@terra.es> | ||
| 2 | |||
| 3 | * keyboard.c (post_command_idle_hook): Remove redundant (and inexact) | ||
| 4 | obsolescence information. | ||
| 5 | |||
| 1 | 2002-07-03 Andrew Choi <akochoi@shaw.ca> | 6 | 2002-07-03 Andrew Choi <akochoi@shaw.ca> |
| 2 | 7 | ||
| 3 | * macterm.c (x_list_fonts): Fix comment. Cache fonts matching | 8 | * macterm.c (x_list_fonts): Fix comment. Cache fonts matching |
| @@ -42,7 +47,7 @@ | |||
| 42 | (timer_start_idle): Set that. | 47 | (timer_start_idle): Set that. |
| 43 | (read_key_sequence): Use that to reset timer_idleness_start_time | 48 | (read_key_sequence): Use that to reset timer_idleness_start_time |
| 44 | to previous value. | 49 | to previous value. |
| 45 | 50 | ||
| 46 | * window.c (Frecenter): With arg, set optional_new_start. | 51 | * window.c (Frecenter): With arg, set optional_new_start. |
| 47 | 52 | ||
| 48 | * xdisp.c (redisplay_internal): Make optional_new_start really work. | 53 | * xdisp.c (redisplay_internal): Make optional_new_start really work. |
| @@ -92,7 +97,7 @@ | |||
| 92 | (decode_mode_spec): Only add two dashes for %- in propertized | 97 | (decode_mode_spec): Only add two dashes for %- in propertized |
| 93 | mode-line string. | 98 | mode-line string. |
| 94 | (syms_of_xdisp): Init and staticpro mode_line_string_list. | 99 | (syms_of_xdisp): Init and staticpro mode_line_string_list. |
| 95 | 100 | ||
| 96 | 2002-06-27 Stefan Monnier <monnier@cs.yale.edu> | 101 | 2002-06-27 Stefan Monnier <monnier@cs.yale.edu> |
| 97 | 102 | ||
| 98 | * minibuf.c (minibuffer_completion_contents): Add return type. | 103 | * minibuf.c (minibuffer_completion_contents): Add return type. |
diff --git a/src/keyboard.c b/src/keyboard.c index 37529018962..5e038c264ed 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -10849,8 +10849,7 @@ might happen repeatedly and make Emacs nonfunctional. */); | |||
| 10849 | 10849 | ||
| 10850 | DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook, | 10850 | DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook, |
| 10851 | doc: /* Normal hook run after each command is executed, if idle. | 10851 | doc: /* Normal hook run after each command is executed, if idle. |
| 10852 | Errors running the hook are caught and ignored. | 10852 | Errors running the hook are caught and ignored. */); |
| 10853 | This feature is obsolete; use idle timers instead. See `etc/NEWS'. */); | ||
| 10854 | Vpost_command_idle_hook = Qnil; | 10853 | Vpost_command_idle_hook = Qnil; |
| 10855 | 10854 | ||
| 10856 | DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay, | 10855 | DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay, |