From e2b64074e76730218f85de1d63ceb6832e579d01 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sat, 30 Jul 2005 19:04:19 +0000 Subject: [PATCH] (syms_of_xdisp) : Defvar it. --- src/ChangeLog | 5 +++++ src/xdisp.c | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index ef08e1e2f66..d4df7540583 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2005-07-30 Juanma Barranquero + + * xdisp.c (syms_of_xdisp) : + Defvar it. + 2005-07-28 Juanma Barranquero * w32fns.c (my_set_window_pos, my_show_window): Don't declare. diff --git a/src/xdisp.c b/src/xdisp.c index 09cf8a7f5de..d7de7dbe826 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -231,7 +231,7 @@ extern Lisp_Object Qhelp_echo; Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map; Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; -Lisp_Object Qredisplay_end_trigger_functions; +Lisp_Object Qredisplay_end_trigger_functions, Vredisplay_end_trigger_functions; Lisp_Object Qinhibit_point_motion_hooks; Lisp_Object QCeval, QCfile, QCdata, QCpropertize; Lisp_Object Qfontified; @@ -23136,6 +23136,12 @@ and its new display-start position. Note that the value of `window-end' is not valid when these functions are called. */); 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_BOOL ("mouse-autoselect-window", &mouse_autoselect_window, doc: /* *Non-nil means autoselect window with mouse pointer. */); mouse_autoselect_window = 0; -- 2.39.5