]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct frame): Give one more bit to `visible' since we use
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 4 Apr 2008 17:56:23 +0000 (17:56 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 4 Apr 2008 17:56:23 +0000 (17:56 +0000)
values larger than 1 to indicate obscured frames on ttys.

src/ChangeLog
src/frame.h

index e8cc705a23c10f5f206c4b37a551234aae679b5d..932dac65ad6a0bedca1a0c16bf240de9c15a8ea0 100644 (file)
@@ -1,5 +1,8 @@
 2008-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * frame.h (struct frame): Give one more bit to `visible' since we use
+       values larger than 1 to indicate obscured frames on ttys.
+
        * keymap.c (Qkeymap_canonicalize): New var.
        (Fmap_keymap_internal): New fun.
        (describe_map): Use keymap-canonicalize.
index cb0916f7803fb154ab962a0e7fafec179c47d932..d18f5aedcbaefd468e8f3794f989564d7dbf10af 100644 (file)
@@ -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.  */