diff options
| author | Jan Djärv | 2003-06-26 21:18:45 +0000 |
|---|---|---|
| committer | Jan Djärv | 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.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 | |||
| 451 | /* Set to non-zero in change_frame_size when size of frame changed | 451 | /* Set to non-zero in change_frame_size when size of frame changed |
| 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 | |||
| 455 | /* Set to non-zero if the default face for the frame has been | ||
| 456 | realized. Reset to zero whenever the default face changes. | ||
| 457 | Used to see the difference between a font change and face change. */ | ||
| 458 | unsigned default_face_done_p : 1; | ||
| 454 | }; | 459 | }; |
| 455 | 460 | ||
| 456 | #ifdef MULTI_KBOARD | 461 | #ifdef MULTI_KBOARD |