diff options
author | Kim F. Storm <storm@cua.dk> | 2005-09-08 22:30:08 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-09-08 22:30:08 +0000 |
commit | 06a9bc2a2eabca892df6a175fcb99fe981c5b585 (patch) | |
tree | 2973268bf878b76f06ac63afa9004724e249c7a0 /src/frame.h | |
parent | 2bb212bd1fcad3599d0a2634beb2668e9a7c0d4a (diff) | |
download | emacs-06a9bc2a2eabca892df6a175fcb99fe981c5b585.tar.gz |
(struct frame): New member updated_p.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h index b6da35ed23a..292074b0ebf 100644 --- a/src/frame.h +++ b/src/frame.h @@ -468,6 +468,9 @@ struct frame /* Set to non-zero if this frame has already been hscrolled during current redisplay. */ unsigned already_hscrolled_p : 1; + + /* Set to non-zero when current redisplay has updated frame. */ + unsigned updated_p : 1; }; #ifdef MULTI_KBOARD |