aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2008-04-04 17:56:23 +0000
committerStefan Monnier2008-04-04 17:56:23 +0000
commitd4417eb006d9957f63809c1d6724b5fae65bdc5c (patch)
tree8202df7e9f513bab7f5582560aea2f9c7183b6f2 /src
parent343bb7bdd1c5500997e4a8326d265c03393a53a6 (diff)
downloademacs-d4417eb006d9957f63809c1d6724b5fae65bdc5c.tar.gz
emacs-d4417eb006d9957f63809c1d6724b5fae65bdc5c.zip
(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')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/frame.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e8cc705a23c..932dac65ad6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12008-04-04 Stefan Monnier <monnier@iro.umontreal.ca> 12008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * frame.h (struct frame): Give one more bit to `visible' since we use
4 values larger than 1 to indicate obscured frames on ttys.
5
3 * keymap.c (Qkeymap_canonicalize): New var. 6 * keymap.c (Qkeymap_canonicalize): New var.
4 (Fmap_keymap_internal): New fun. 7 (Fmap_keymap_internal): New fun.
5 (describe_map): Use keymap-canonicalize. 8 (describe_map): Use keymap-canonicalize.
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
392 392
393 These two are mutually exclusive. They might both be zero, if the 393 These two are mutually exclusive. They might both be zero, if the
394 frame has been made invisible without an icon. */ 394 frame has been made invisible without an icon. */
395 unsigned char visible : 1; 395 unsigned char visible : 2;
396 unsigned char iconified : 1; 396 unsigned char iconified : 1;
397 397
398 /* Let's not use bitfields for volatile variables. */ 398 /* Let's not use bitfields for volatile variables. */