# HG changeset patch # User Stefan Monnier # Date 1207331783 0 # Node ID f8942531c10644329e8d7777e9679070d015104d # Parent 4005595ecc017c184021f2c395cd2aaa2b541c0d (struct frame): Give one more bit to `visible' since we use values larger than 1 to indicate obscured frames on ttys. diff -r 4005595ecc01 -r f8942531c106 src/ChangeLog --- a/src/ChangeLog Fri Apr 04 17:38:44 2008 +0000 +++ b/src/ChangeLog Fri Apr 04 17:56:23 2008 +0000 @@ -1,5 +1,8 @@ 2008-04-04 Stefan Monnier + * 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. diff -r 4005595ecc01 -r f8942531c106 src/frame.h --- a/src/frame.h Fri Apr 04 17:38:44 2008 +0000 +++ b/src/frame.h Fri Apr 04 17:56:23 2008 +0000 @@ -392,7 +392,7 @@ 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. */