diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-04 17:56:23 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-04 17:56:23 +0000 |
commit | d4417eb006d9957f63809c1d6724b5fae65bdc5c (patch) | |
tree | 8202df7e9f513bab7f5582560aea2f9c7183b6f2 /src/frame.h | |
parent | 343bb7bdd1c5500997e4a8326d265c03393a53a6 (diff) | |
download | emacs-d4417eb006d9957f63809c1d6724b5fae65bdc5c.tar.gz |
(struct frame): Give one more bit to `visible' since we use
values larger than 1 to indicate obscured frames on ttys.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.h b/src/frame.h index cb0916f7803..d18f5aedcba 100644 --- a/src/frame.h +++ b/src/frame.h @@ -392,7 +392,7 @@ struct frame These two are mutually exclusive. They might both be zero, if the frame has been made invisible without an icon. */ - unsigned char visible : 1; + unsigned char visible : 2; unsigned char iconified : 1; /* Let's not use bitfields for volatile variables. */ |