diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-07-31 01:44:22 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-07-31 01:44:22 +0200 |
commit | 5b29f8cd98c014b4b3e5844ef128ba97e65ea036 (patch) | |
tree | 90475b7bdcae4146ce8b4c9ce11d979ed00ba600 | |
parent | a3d974d59f4c352724f5562f4cc53e8a8f6e8cab (diff) | |
download | emacs-5b29f8cd98c014b4b3e5844ef128ba97e65ea036.tar.gz emacs-5b29f8cd98c014b4b3e5844ef128ba97e65ea036.tar.bz2 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.
-rw-r--r-- | admin/coccinelle/window.cocci | 6 | ||||
-rw-r--r-- | doc/lispref/hooks.texi | 1 | ||||
-rw-r--r-- | etc/NEWS | 3 | ||||
-rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 2 | ||||
-rw-r--r-- | lisp/loadhist.el | 2 | ||||
-rw-r--r-- | lisp/subr.el | 3 | ||||
-rw-r--r-- | src/dispextern.h | 3 | ||||
-rw-r--r-- | src/window.c | 27 | ||||
-rw-r--r-- | src/window.h | 10 | ||||
-rw-r--r-- | src/xdisp.c | 49 |
10 files changed, 4 insertions, 102 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; - W->column_number_displayed + WVAR (W, column_number_displayed) | -- W->redisplay_end_trigger -+ WVAR (W, redisplay_end_trigger) -| - W->combination_limit + WVAR (W, combination_limit) | @@ -225,9 +222,6 @@ Lisp_Object O; - XWINDOW (O)->column_number_displayed + WVAR (XWINDOW (O), column_number_displayed) | -- XWINDOW (O)->redisplay_end_trigger -+ WVAR (XWINDOW (O), redisplay_end_trigger) -| - XWINDOW (O)->combination_limit + WVAR (XWINDOW (O), combination_limit) | diff --git a/doc/lispref/hooks.texi b/doc/lispref/hooks.texi index 59b7930732f..339e1387d2e 100644 --- a/doc/lispref/hooks.texi +++ b/doc/lispref/hooks.texi @@ -280,7 +280,6 @@ kbd-macro-termination-hook signal-hook-function C functions: -redisplay-end-trigger-functions x-lost-selection-functions x-sent-selection-functions @@ -2452,8 +2452,9 @@ but switching to `ash` is generally much preferable. --- ** Some functions and variables obsolete since Emacs 23 have been removed: 'find-emacs-lisp-shadows', 'newsticker-cache-filename', +'redisplay-end-trigger-functions', 'set-window-redisplay-end-trigger', 'unify-8859-on-decoding-mode', 'unify-8859-on-encoding-mode', -'vc-arch-command'. +'vc-arch-command', 'window-redisplay-end-trigger'. +++ ** New generic function 'function-documentation'. diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 9817fa0eb15..7a4bbf2e8af 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el @@ -1471,7 +1471,7 @@ See Info node `(elisp) Integer Basics'." window-next-buffers window-next-sibling window-new-normal window-new-total window-normal-size window-parameter window-parameters window-parent window-pixel-edges window-point window-prev-buffers - window-prev-sibling window-redisplay-end-trigger window-scroll-bars + window-prev-sibling window-scroll-bars window-start window-text-height window-top-child window-top-line window-total-height window-total-width window-use-time window-vscroll window-width zerop)) diff --git a/lisp/loadhist.el b/lisp/loadhist.el index 39481ab0684..b4ed0432465 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el @@ -128,7 +128,7 @@ from a file." font-lock-unfontify-region-function kill-buffer-query-functions kill-emacs-query-functions lisp-indent-function mouse-position-function - redisplay-end-trigger-functions suspend-tty-functions + suspend-tty-functions temp-buffer-show-function window-scroll-functions window-size-change-functions write-contents-functions write-file-functions write-region-annotate-functions) diff --git a/lisp/subr.el b/lisp/subr.el index c220a7f4a88..1a16d781174 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1860,10 +1860,7 @@ be a list of the form returned by `event-start' and `event-end'." ;;;; Obsolescence declarations for variables, and aliases. -(make-obsolete-variable 'redisplay-end-trigger-functions 'jit-lock-register "23.1") (make-obsolete-variable 'redisplay-dont-pause nil "24.5") -(make-obsolete 'window-redisplay-end-trigger nil "23.1") -(make-obsolete 'set-window-redisplay-end-trigger nil "23.1") (make-obsolete-variable 'operating-system-release nil "28.1") (make-obsolete-variable 'inhibit-changing-match-data 'save-match-data "29.1") diff --git a/src/dispextern.h b/src/dispextern.h index 817211e795e..037e02ff58f 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -2350,9 +2350,6 @@ struct it used for overlay strings and strings from display properties. */ ptrdiff_t string_nchars; - /* Position at which redisplay end trigger functions should be run. */ - ptrdiff_t redisplay_end_trigger_charpos; - /* True means multibyte characters are enabled. */ bool_bf multibyte_p : 1; diff --git a/src/window.c b/src/window.c index 33a1b8a4bf4..afb8f75537b 100644 --- a/src/window.c +++ b/src/window.c @@ -1300,31 +1300,6 @@ window so that the location of point moves off-window. */) return set_window_hscroll (decode_live_window (window), XFIXNUM (ncol)); } -DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger, - Swindow_redisplay_end_trigger, 0, 1, 0, - doc: /* Return WINDOW's redisplay end trigger value. -WINDOW must be a live window and defaults to the selected one. -See `set-window-redisplay-end-trigger' for more information. */) - (Lisp_Object window) -{ - return decode_live_window (window)->redisplay_end_trigger; -} - -DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger, - Sset_window_redisplay_end_trigger, 2, 2, 0, - doc: /* Set WINDOW's redisplay end trigger value to VALUE. -WINDOW must be a live window and defaults to the selected one. VALUE -should be a buffer position (typically a marker) or nil. If it is a -buffer position, then if redisplay in WINDOW reaches a position beyond -VALUE, the functions in `redisplay-end-trigger-functions' are called -with two arguments: WINDOW, and the end trigger value. Afterwards the -end-trigger value is reset to nil. */) - (register Lisp_Object window, Lisp_Object value) -{ - wset_redisplay_end_trigger (decode_live_window (window), value); - return value; -} - /* Test if the character at column X, row Y is within window W. If it is not, return ON_NOTHING; if it is on the window's vertical divider, return @@ -8640,8 +8615,6 @@ displayed after a scrolling operation to be somewhat inaccurate. */); defsubr (&Swindow_body_width); defsubr (&Swindow_hscroll); defsubr (&Sset_window_hscroll); - defsubr (&Swindow_redisplay_end_trigger); - defsubr (&Sset_window_redisplay_end_trigger); defsubr (&Swindow_mode_line_height); defsubr (&Swindow_header_line_height); defsubr (&Swindow_tab_line_height); 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 and Qt, so bitfield can't be used here. */ Lisp_Object dedicated; - /* If redisplay in this window goes beyond this buffer position, - must run the redisplay-end-trigger-hook. */ - Lisp_Object redisplay_end_trigger; - /* t means this window's child windows are not (re-)combined. */ Lisp_Object combination_limit; @@ -498,12 +494,6 @@ wset_prev (struct window *w, Lisp_Object val) } INLINE void -wset_redisplay_end_trigger (struct window *w, Lisp_Object val) -{ - w->redisplay_end_trigger = val; -} - -INLINE void wset_mode_line_help_echo (struct window *w, Lisp_Object val) { w->mode_line_help_echo = val; diff --git a/src/xdisp.c b/src/xdisp.c index b1ee7889d46..88a489e290f 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -1138,7 +1138,6 @@ static int display_string (const char *, Lisp_Object, Lisp_Object, ptrdiff_t, ptrdiff_t, struct it *, int, int, int, int); static void compute_line_metrics (struct it *); -static void run_redisplay_end_trigger_hook (struct it *); static bool get_overlay_strings (struct it *, ptrdiff_t); static bool get_overlay_strings_1 (struct it *, ptrdiff_t, bool); static void next_overlay_string (struct it *); @@ -3279,17 +3278,6 @@ init_iterator (struct it *it, struct window *w, /* Are multibyte characters enabled in current_buffer? */ it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters)); - /* Get the position at which the redisplay_end_trigger hook should - be run, if it is to be run at all. */ - if (MARKERP (w->redisplay_end_trigger) - && XMARKER (w->redisplay_end_trigger)->buffer != 0) - it->redisplay_end_trigger_charpos - = marker_position (w->redisplay_end_trigger); - else if (FIXNUMP (w->redisplay_end_trigger)) - it->redisplay_end_trigger_charpos - = clip_to_bounds (PTRDIFF_MIN, XFIXNUM (w->redisplay_end_trigger), - PTRDIFF_MAX); - it->tab_width = SANE_TAB_WIDTH (current_buffer); /* Are lines in the display truncated? */ @@ -9430,13 +9418,6 @@ next_element_from_buffer (struct it *it) previously seen overlays is no longer valid. */ it->ignore_overlay_strings_at_pos_p = false; - /* Maybe run the redisplay end trigger hook. Performance note: - This doesn't seem to cost measurable time. */ - if (it->redisplay_end_trigger_charpos - && it->glyph_row - && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos) - run_redisplay_end_trigger_hook (it); - if (composition_break_at_point && !NILP (BVAR (current_buffer, enable_multibyte_characters)) && !NILP (Vauto_composition_mode)) @@ -9504,29 +9485,6 @@ next_element_from_buffer (struct it *it) } -/* Run the redisplay end trigger hook for IT. */ - -static void -run_redisplay_end_trigger_hook (struct it *it) -{ - /* IT->glyph_row should be non-null, i.e. we should be actually - displaying something, or otherwise we should not run the hook. */ - eassert (it->glyph_row); - - ptrdiff_t charpos = it->redisplay_end_trigger_charpos; - it->redisplay_end_trigger_charpos = 0; - - /* Since we are *trying* to run these functions, don't try to run - them again, even if they get an error. */ - wset_redisplay_end_trigger (it->w, Qnil); - CALLN (Frun_hook_with_args, Qredisplay_end_trigger_functions, it->window, - make_fixnum (charpos)); - - /* Notice if it changed the face of the character we are on. */ - handle_face_prop (it); -} - - /* Deliver a composition display element. Unlike the other next_element_from_XXX, this function is not registered in the array get_next_element[]. It is called from next_element_from_buffer and @@ -36129,7 +36087,6 @@ be let-bound around code that needs to disable messages temporarily. */); DEFSYM (Qoverriding_terminal_local_map, "overriding-terminal-local-map"); DEFSYM (Qoverriding_local_map, "overriding-local-map"); DEFSYM (Qwindow_scroll_functions, "window-scroll-functions"); - DEFSYM (Qredisplay_end_trigger_functions, "redisplay-end-trigger-functions"); DEFSYM (Qinhibit_point_motion_hooks, "inhibit-point-motion-hooks"); DEFSYM (Qeval, "eval"); DEFSYM (QCdata, ":data"); @@ -36533,12 +36490,6 @@ is scrolled. It is not designed for that, and such use probably won't work. */); Vwindow_scroll_functions = Qnil; - DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions, - doc: /* Functions called when redisplay of a window reaches the end trigger. -Each function is called with two arguments, the window and the end trigger value. -See `set-window-redisplay-end-trigger'. */); - Vredisplay_end_trigger_functions = Qnil; - DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window, doc: /* Non-nil means autoselect window with mouse pointer. If nil, do not autoselect windows. |