diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-06-26 21:18:45 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-06-26 21:18:45 +0000 |
commit | a5f696acd2f4ad2a22fd1b5e48ea97d2ffa311b9 (patch) | |
tree | e9e47d850ca3b93571f0acb10859b5fb880e8b03 /src/frame.h | |
parent | cffcede78a72f85e00dd6dea1507eed6f2f14351 (diff) | |
download | emacs-a5f696acd2f4ad2a22fd1b5e48ea97d2ffa311b9.tar.gz emacs-a5f696acd2f4ad2a22fd1b5e48ea97d2ffa311b9.tar.bz2 emacs-a5f696acd2f4ad2a22fd1b5e48ea97d2ffa311b9.zip |
Fix some of the font/face problems.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h index 6ecfcf970b5..a2ca24a014d 100644 --- a/src/frame.h +++ b/src/frame.h @@ -451,6 +451,11 @@ struct frame /* Set to non-zero in change_frame_size when size of frame changed Clear the frame in clear_garbaged_frames if set. */ unsigned resized_p : 1; + + /* Set to non-zero if the default face for the frame has been + realized. Reset to zero whenever the default face changes. + Used to see the difference between a font change and face change. */ + unsigned default_face_done_p : 1; }; #ifdef MULTI_KBOARD |