diff options
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 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; |