comparison src/window.h @ 13458:adc8fc9fe6ed

(struct window): New field redisplay_end_trigger.
author Richard M. Stallman <rms@gnu.org>
date Fri, 10 Nov 1995 16:05:24 +0000
parents 81f12c1d0178
children ee40177f6c68
comparison
equal deleted inserted replaced
13457:8a1986b2cc76 13458:adc8fc9fe6ed
171 this is the mark position that we used, as an integer. */ 171 this is the mark position that we used, as an integer. */
172 Lisp_Object region_showing; 172 Lisp_Object region_showing;
173 /* The column number currently displayed in this window's mode line, 173 /* The column number currently displayed in this window's mode line,
174 or nil if column numbers are not being displayed. */ 174 or nil if column numbers are not being displayed. */
175 Lisp_Object column_number_displayed; 175 Lisp_Object column_number_displayed;
176 /* If redisplay in this window goes beyond this buffer position,
177 must run the redisplay-end-trigger-hook. */
178 Lisp_Object redisplay_end_trigger;
176 }; 179 };
177 180
178 /* 1 if W is a minibuffer window. */ 181 /* 1 if W is a minibuffer window. */
179 182
180 #define MINI_WINDOW_P(W) (!EQ ((W)->mini_p, Qnil)) 183 #define MINI_WINDOW_P(W) (!EQ ((W)->mini_p, Qnil))