Mercurial > emacs
comparison src/xdisp.c @ 90223:edf295560b5a
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-77
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 504-513)
- Update from CVS
- Merge from gnus--rel--5.10
- Update from CVS: .cvsignore: Add `lock'.
* gnus--rel--5.10 (patch 99-103)
- Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Fri, 05 Aug 2005 10:57:36 +0000 |
parents | 187d6a1f84f7 9f479710f3fc |
children | 2d92f5c9d6ae |
comparison
equal
deleted
inserted
replaced
90222:709f27353024 | 90223:edf295560b5a |
---|---|
230 extern Lisp_Object Qwhen; | 230 extern Lisp_Object Qwhen; |
231 extern Lisp_Object Qhelp_echo; | 231 extern Lisp_Object Qhelp_echo; |
232 | 232 |
233 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map; | 233 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map; |
234 Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; | 234 Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; |
235 Lisp_Object Qredisplay_end_trigger_functions; | 235 Lisp_Object Qredisplay_end_trigger_functions, Vredisplay_end_trigger_functions; |
236 Lisp_Object Qinhibit_point_motion_hooks; | 236 Lisp_Object Qinhibit_point_motion_hooks; |
237 Lisp_Object QCeval, QCfile, QCdata, QCpropertize; | 237 Lisp_Object QCeval, QCfile, QCdata, QCpropertize; |
238 Lisp_Object Qfontified; | 238 Lisp_Object Qfontified; |
239 Lisp_Object Qgrow_only; | 239 Lisp_Object Qgrow_only; |
240 Lisp_Object Qinhibit_eval_during_redisplay; | 240 Lisp_Object Qinhibit_eval_during_redisplay; |
23275 Each function is called with two arguments, the window | 23275 Each function is called with two arguments, the window |
23276 and its new display-start position. Note that the value of `window-end' | 23276 and its new display-start position. Note that the value of `window-end' |
23277 is not valid when these functions are called. */); | 23277 is not valid when these functions are called. */); |
23278 Vwindow_scroll_functions = Qnil; | 23278 Vwindow_scroll_functions = Qnil; |
23279 | 23279 |
23280 DEFVAR_LISP ("redisplay-end-trigger-functions", &Vredisplay_end_trigger_functions, | |
23281 doc: /* Functions called when redisplay of a window reaches the end trigger. | |
23282 Each function is called with two arguments, the window and the end trigger value. | |
23283 See `set-window-redisplay-end-trigger'. */); | |
23284 Vredisplay_end_trigger_functions = Qnil; | |
23285 | |
23280 DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window, | 23286 DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window, |
23281 doc: /* *Non-nil means autoselect window with mouse pointer. */); | 23287 doc: /* *Non-nil means autoselect window with mouse pointer. */); |
23282 mouse_autoselect_window = 0; | 23288 mouse_autoselect_window = 0; |
23283 | 23289 |
23284 DEFVAR_BOOL ("auto-resize-tool-bars", &auto_resize_tool_bars_p, | 23290 DEFVAR_BOOL ("auto-resize-tool-bars", &auto_resize_tool_bars_p, |