# HG changeset patch # User Richard M. Stallman # Date 781824656 0 # Node ID 836113a97d92e66120fa0ba5ca408dcbbec8b622 # Parent b429144f6acefb88d7a94c78044f4092ca27e76b (redisplay_window): Fix Oct 1 change: don't call cancel_my_columns unless we will call try_window. diff -r b429144f6ace -r 836113a97d92 src/xdisp.c --- a/src/xdisp.c Mon Oct 10 16:01:58 1994 +0000 +++ b/src/xdisp.c Mon Oct 10 21:30:56 1994 +0000 @@ -1186,10 +1186,12 @@ } /* If we are highlighting the region, then we just changed the region, so redisplay to show it. */ - cancel_my_columns (XWINDOW (window)); if (!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active)) - try_window (window, startp); + { + cancel_my_columns (XWINDOW (window)); + try_window (window, startp); + } } goto done; }