diff options
| author | Stefan Kangas | 2022-07-31 01:44:22 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-07-31 01:44:22 +0200 |
| commit | 5b29f8cd98c014b4b3e5844ef128ba97e65ea036 (patch) | |
| tree | 90475b7bdcae4146ce8b4c9ce11d979ed00ba600 /src/window.h | |
| parent | a3d974d59f4c352724f5562f4cc53e8a8f6e8cab (diff) | |
| download | emacs-5b29f8cd98c014b4b3e5844ef128ba97e65ea036.tar.gz emacs-5b29f8cd98c014b4b3e5844ef128ba97e65ea036.zip | |
Delete redisplay-end-trigger-functions and related defuns
This variable and related functions have been obsolete since 23.1.
The last things to depend on this (fast-lock.el and lazy-lock.el) were
recently removed.
* src/dispextern.h (struct it): Delete field
'redisplay_end_trigger_charpos'.
* src/window.c (Fwindow_redisplay_end_trigger)
(Fset_window_redisplay_end_trigger): Delete defuns and corresponding
defsubrs for functions obsolete since 23.1.
* src/window.h (wset_redisplay_end_trigger): Delete function.
(GCALIGNED_STRUCT): Delete 'redisplay_end_trigger'.
* src/xdisp.c (run_redisplay_end_trigger_hook): Delete function.
(syms_of_xdisp) <redisplay_end_trigger_functions>: Delete
variable obsolete since 23.1.
(init_iterator, next_element_from_buffer): Don't run or set above
deleted hook variable.
* lisp/subr.el: Delete obsoletion definitions for above deleted
defuns and variable.
* doc/lispref/hooks.texi (Standard Hooks):
* lisp/emacs-lisp/byte-opt.el (side-effect-free-fns):
* lisp/loadhist.el (unload-feature-special-hooks): Don't mention
above deleted variable.
* admin/coccinelle/window.cocci: Adjust for above changes.
Diffstat (limited to 'src/window.h')
| -rw-r--r-- | src/window.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/window.h b/src/window.h index c63b1b24d4f..93817a95445 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -199,10 +199,6 @@ struct window | |||
| 199 | and Qt, so bitfield can't be used here. */ | 199 | and Qt, so bitfield can't be used here. */ |
| 200 | Lisp_Object dedicated; | 200 | Lisp_Object dedicated; |
| 201 | 201 | ||
| 202 | /* If redisplay in this window goes beyond this buffer position, | ||
| 203 | must run the redisplay-end-trigger-hook. */ | ||
| 204 | Lisp_Object redisplay_end_trigger; | ||
| 205 | |||
| 206 | /* t means this window's child windows are not (re-)combined. */ | 202 | /* t means this window's child windows are not (re-)combined. */ |
| 207 | Lisp_Object combination_limit; | 203 | Lisp_Object combination_limit; |
| 208 | 204 | ||
| @@ -498,12 +494,6 @@ wset_prev (struct window *w, Lisp_Object val) | |||
| 498 | } | 494 | } |
| 499 | 495 | ||
| 500 | INLINE void | 496 | INLINE void |
| 501 | wset_redisplay_end_trigger (struct window *w, Lisp_Object val) | ||
| 502 | { | ||
| 503 | w->redisplay_end_trigger = val; | ||
| 504 | } | ||
| 505 | |||
| 506 | INLINE void | ||
| 507 | wset_mode_line_help_echo (struct window *w, Lisp_Object val) | 497 | wset_mode_line_help_echo (struct window *w, Lisp_Object val) |
| 508 | { | 498 | { |
| 509 | w->mode_line_help_echo = val; | 499 | w->mode_line_help_echo = val; |