From 4f0770d88e1b9ad5ec4e9a91eb5747ab05709f91 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 22 Nov 2000 15:34:56 +0000 Subject: [PATCH] (display_menu_bar): Or `mode-line-inverse-video' with the face's inverse-video attribute, rather than overriding it. --- src/xdisp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) } /* Make the first line of the menu bar appear in reverse video. */ - it.glyph_row->inverse_p = mode_line_inverse_video != 0; + if (mode_line_inverse_video) + it.glyph_row->inverse_p = 1; /* Display all items of the menu bar. */ items = FRAME_MENU_BAR_ITEMS (it.f); -- 2.39.5