Function: set-window-redisplay-end-trigger

set-window-redisplay-end-trigger is a function defined in window.c.

This function is obsolete since 23.1.

Signature

(set-window-redisplay-end-trigger WINDOW VALUE)

Documentation

Set WINDOW's redisplay end trigger value to VALUE.

WINDOW must be a live window and defaults to the selected one. VALUE should be a buffer position (typically a marker) or nil. If it is a buffer position, then if redisplay in WINDOW reaches a position beyond VALUE, the functions in redisplay-end-trigger-functions are called with two arguments: WINDOW, and the end trigger value. Afterwards the end-trigger value is reset to nil.

Probably introduced at or before Emacs version 19.30.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  wset_redisplay_end_trigger (decode_live_window (window), value);
  return value;
}