aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-02-08 23:19:37 +0000
committerKim F. Storm2004-02-08 23:19:37 +0000
commit21fb8f569021d669c79f8cc530ec05e5661e4f67 (patch)
tree3479f5b733e5837691d5fd7155579e9975a35127 /src
parent0fc4c63e478f8bf5b6396745b5db92caeaa9e872 (diff)
downloademacs-21fb8f569021d669c79f8cc530ec05e5661e4f67.tar.gz
emacs-21fb8f569021d669c79f8cc530ec05e5661e4f67.zip
(struct frame): New member force_flush_display_p.
Diffstat (limited to 'src')
-rw-r--r--src/frame.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h
index 30d3f4348e9..8bdaff99754 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -452,6 +452,10 @@ struct frame
452 Clear the frame in clear_garbaged_frames if set. */ 452 Clear the frame in clear_garbaged_frames if set. */
453 unsigned resized_p : 1; 453 unsigned resized_p : 1;
454 454
455 /* Set to non-zero in when we want for force a flush_display in
456 update_frame, usually after resizing the frame. */
457 unsigned force_flush_display_p : 1;
458
455 /* Set to non-zero if the default face for the frame has been 459 /* Set to non-zero if the default face for the frame has been
456 realized. Reset to zero whenever the default face changes. 460 realized. Reset to zero whenever the default face changes.
457 Used to see the difference between a font change and face change. */ 461 Used to see the difference between a font change and face change. */