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 /admin | |
| 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 'admin')
| -rw-r--r-- | admin/coccinelle/window.cocci | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/admin/coccinelle/window.cocci b/admin/coccinelle/window.cocci index 1448febfcc1..4543fb2ce15 100644 --- a/admin/coccinelle/window.cocci +++ b/admin/coccinelle/window.cocci | |||
| @@ -106,9 +106,6 @@ Lisp_Object O; | |||
| 106 | - W->column_number_displayed | 106 | - W->column_number_displayed |
| 107 | + WVAR (W, column_number_displayed) | 107 | + WVAR (W, column_number_displayed) |
| 108 | | | 108 | | |
| 109 | - W->redisplay_end_trigger | ||
| 110 | + WVAR (W, redisplay_end_trigger) | ||
| 111 | | | ||
| 112 | - W->combination_limit | 109 | - W->combination_limit |
| 113 | + WVAR (W, combination_limit) | 110 | + WVAR (W, combination_limit) |
| 114 | | | 111 | | |
| @@ -225,9 +222,6 @@ Lisp_Object O; | |||
| 225 | - XWINDOW (O)->column_number_displayed | 222 | - XWINDOW (O)->column_number_displayed |
| 226 | + WVAR (XWINDOW (O), column_number_displayed) | 223 | + WVAR (XWINDOW (O), column_number_displayed) |
| 227 | | | 224 | | |
| 228 | - XWINDOW (O)->redisplay_end_trigger | ||
| 229 | + WVAR (XWINDOW (O), redisplay_end_trigger) | ||
| 230 | | | ||
| 231 | - XWINDOW (O)->combination_limit | 225 | - XWINDOW (O)->combination_limit |
| 232 | + WVAR (XWINDOW (O), combination_limit) | 226 | + WVAR (XWINDOW (O), combination_limit) |
| 233 | | | 227 | | |