diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-11-10 16:05:24 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-11-10 16:05:24 +0000 |
commit | 0011403e954d03e4aa2c5c5d401590840f54d2ec (patch) | |
tree | ff4fc05fafadebcd0198c981ca4bb2ab07a95df5 /src/window.h | |
parent | a6fcc25772e42d10ae8809519c95e39bb81dd994 (diff) | |
download | emacs-0011403e954d03e4aa2c5c5d401590840f54d2ec.tar.gz |
(struct window): New field redisplay_end_trigger.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index 9b4e50a8194..75aa047c168 100644 --- a/src/window.h +++ b/src/window.h @@ -173,6 +173,9 @@ struct window /* The column number currently displayed in this window's mode line, or nil if column numbers are not being displayed. */ Lisp_Object column_number_displayed; + /* If redisplay in this window goes beyond this buffer position, + must run the redisplay-end-trigger-hook. */ + Lisp_Object redisplay_end_trigger; }; /* 1 if W is a minibuffer window. */ |