* src/xdisp.c (redisplay_internal): Fix typo in last change.
This commit is contained in:
parent
a5d376b02e
commit
e2e894cf5c
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* xdisp.c (redisplay_internal): Fix typo in last change.
|
||||
|
||||
2013-11-06 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* regex.c: Fix --enable-gcc-warning glitch with GCC 4.5.2.
|
||||
|
|
|
@ -1629,8 +1629,8 @@ command_loop_1 (void)
|
|||
&& NILP (Fmemq (Vthis_command,
|
||||
Vselection_inhibit_update_commands)))
|
||||
{
|
||||
ptrdiff_t beg =
|
||||
XINT (Fmarker_position (BVAR (current_buffer, mark)));
|
||||
ptrdiff_t beg
|
||||
= XINT (Fmarker_position (BVAR (current_buffer, mark)));
|
||||
ptrdiff_t end = PT;
|
||||
if (beg < end)
|
||||
call2 (Qx_set_selection, QPRIMARY,
|
||||
|
|
|
@ -13004,7 +13004,7 @@ redisplay_internal (void)
|
|||
if (NILP (Vmemory_full))
|
||||
prepare_menu_bars ();
|
||||
|
||||
if (windows_or_buffers_changed & !update_mode_lines)
|
||||
if (windows_or_buffers_changed && !update_mode_lines)
|
||||
update_mode_lines = 32;
|
||||
|
||||
reconsider_clip_changes (w);
|
||||
|
|
Loading…
Add table
Reference in a new issue