Mercurial > emacs
changeset 64691:9f479710f3fc
(syms_of_xdisp) <redisplay-end-trigger-functions>: Defvar it.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sat, 30 Jul 2005 19:02:14 +0000 |
parents | 70e0ba97aaec |
children | 277ec4e94237 |
files | src/xdisp.c |
diffstat | 1 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;