# HG changeset patch # User Juanma Barranquero # Date 1122750134 0 # Node ID 9f479710f3fc3a9221f5bf46d3aa2808bf215064 # Parent 70e0ba97aaecc2e37701a8b7fb5b67cc6b691acd (syms_of_xdisp) : Defvar it. diff -r 70e0ba97aaec -r 9f479710f3fc src/xdisp.c --- a/src/xdisp.c Sat Jul 30 11:45:41 2005 +0000 +++ b/src/xdisp.c Sat Jul 30 19:02:14 2005 +0000 @@ -231,7 +231,7 @@ 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 @@ 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;