From 6f27fa9b16c95b1f6c32c812aead9db4eca0e1e2 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 10 Oct 1994 21:30:56 +0000 Subject: [PATCH] (redisplay_window): Fix Oct 1 change: don't call cancel_my_columns unless we will call try_window. --- src/xdisp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 7b464dfa74e..9b476a7f29b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -1186,10 +1186,12 @@ redisplay_window (window, just_this_one) } /* 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; } -- 2.39.5