aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-11-18 16:00:22 +0000
committerRichard M. Stallman1995-11-18 16:00:22 +0000
commit76854cf2c28a146d5fc10dab1a21ff3b40a1760b (patch)
treedc91aba286f086fda18fa97789f92bef33fb0f2f /src
parentbeea50e4154cc223d21287d70bb3fb56a48790f0 (diff)
downloademacs-76854cf2c28a146d5fc10dab1a21ff3b40a1760b.tar.gz
emacs-76854cf2c28a146d5fc10dab1a21ff3b40a1760b.zip
(Fset_window_redisplay_end_trigger): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index 7efff3c9dcc..fc3f7af59a5 100644
--- a/src/window.c
+++ b/src/window.c
@@ -328,10 +328,10 @@ DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
328 Sset_window_redisplay_end_trigger, 2, 2, 0, 328 Sset_window_redisplay_end_trigger, 2, 2, 0,
329 "Set WINDOW's redisplay end trigger value to VALUE.\n\ 329 "Set WINDOW's redisplay end trigger value to VALUE.\n\
330VALUE should be a buffer position (typically a marker) or nil.\n\ 330VALUE should be a buffer position (typically a marker) or nil.\n\
331If it is a buffer position, then if redisplay in WINDOW\n\ 331If it is a buffer position, then if redisplay in WINDOW reaches a position\n\
332reaches a position beyond VALUE, the normal hook\n\ 332beyond VALUE, the functions in `redisplay-end-trigger-functions' are called\n\
333`redisplay-end-trigger-hook' is run (and then the end-trigger value\n\ 333with two arguments: WINDOW, and the end trigger value.\n\
334is reset to nil.") 334Afterwards the end-trigger value is reset to nil.")
335 (window, value) 335 (window, value)
336 register Lisp_Object window, value; 336 register Lisp_Object window, value;
337{ 337{