aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-09-08 22:30:08 +0000
committerKim F. Storm2005-09-08 22:30:08 +0000
commit06a9bc2a2eabca892df6a175fcb99fe981c5b585 (patch)
tree2973268bf878b76f06ac63afa9004724e249c7a0
parent2bb212bd1fcad3599d0a2634beb2668e9a7c0d4a (diff)
downloademacs-06a9bc2a2eabca892df6a175fcb99fe981c5b585.tar.gz
emacs-06a9bc2a2eabca892df6a175fcb99fe981c5b585.zip
(struct frame): New member updated_p.
-rw-r--r--src/frame.h3
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
468 /* Set to non-zero if this frame has already been hscrolled during 468 /* Set to non-zero if this frame has already been hscrolled during
469 current redisplay. */ 469 current redisplay. */
470 unsigned already_hscrolled_p : 1; 470 unsigned already_hscrolled_p : 1;
471
472 /* Set to non-zero when current redisplay has updated frame. */
473 unsigned updated_p : 1;
471}; 474};
472 475
473#ifdef MULTI_KBOARD 476#ifdef MULTI_KBOARD