diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 3 |
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); |