aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiles Bader2000-11-22 15:34:56 +0000
committerMiles Bader2000-11-22 15:34:56 +0000
commit4f0770d88e1b9ad5ec4e9a91eb5747ab05709f91 (patch)
tree94e86a0962c2438a21dd3716d11b86b158334268 /src
parentebd040584d4180449fcfb64d3a52844f65557e61 (diff)
downloademacs-4f0770d88e1b9ad5ec4e9a91eb5747ab05709f91.tar.gz
emacs-4f0770d88e1b9ad5ec4e9a91eb5747ab05709f91.zip
(display_menu_bar): Or `mode-line-inverse-video' with the face's
inverse-video attribute, rather than overriding it.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index c018ebea475..2eb9933a2f2 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -12327,7 +12327,8 @@ display_menu_bar (w)
12327 } 12327 }
12328 12328
12329 /* Make the first line of the menu bar appear in reverse video. */ 12329 /* Make the first line of the menu bar appear in reverse video. */
12330 it.glyph_row->inverse_p = mode_line_inverse_video != 0; 12330 if (mode_line_inverse_video)
12331 it.glyph_row->inverse_p = 1;
12331 12332
12332 /* Display all items of the menu bar. */ 12333 /* Display all items of the menu bar. */
12333 items = FRAME_MENU_BAR_ITEMS (it.f); 12334 items = FRAME_MENU_BAR_ITEMS (it.f);