diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index f711abded46..f341c064785 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -1250,7 +1250,10 @@ update_menu_bar (f, save_match_data) | |||
| 1250 | || !NILP (w->update_mode_line) | 1250 | || !NILP (w->update_mode_line) |
| 1251 | || (XFASTINT (w->last_modified) < MODIFF | 1251 | || (XFASTINT (w->last_modified) < MODIFF |
| 1252 | && (XFASTINT (w->last_modified) | 1252 | && (XFASTINT (w->last_modified) |
| 1253 | <= BUF_SAVE_MODIFF (XBUFFER (w->buffer))))) | 1253 | <= BUF_SAVE_MODIFF (XBUFFER (w->buffer)))) |
| 1254 | || ((!NILP (Vtransient_mark_mode) | ||
| 1255 | && !NILP (XBUFFER (w->buffer)->mark_active)) | ||
| 1256 | != !NILP (w->region_showing))) | ||
| 1254 | { | 1257 | { |
| 1255 | struct buffer *prev = current_buffer; | 1258 | struct buffer *prev = current_buffer; |
| 1256 | int count = specpdl_ptr - specpdl; | 1259 | int count = specpdl_ptr - specpdl; |