aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-10 21:30:56 +0000
committerRichard M. Stallman1994-10-10 21:30:56 +0000
commit6f27fa9b16c95b1f6c32c812aead9db4eca0e1e2 (patch)
treea991eabbe18e14a36a29e39368afa8133f2654c4 /src
parentf0c5b7125ade68cf4e77069f51e47f63c1e07d17 (diff)
downloademacs-6f27fa9b16c95b1f6c32c812aead9db4eca0e1e2.tar.gz
emacs-6f27fa9b16c95b1f6c32c812aead9db4eca0e1e2.zip
(redisplay_window): Fix Oct 1 change:
don't call cancel_my_columns unless we will call try_window.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c6
1 files 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)
1186 } 1186 }
1187 /* If we are highlighting the region, 1187 /* If we are highlighting the region,
1188 then we just changed the region, so redisplay to show it. */ 1188 then we just changed the region, so redisplay to show it. */
1189 cancel_my_columns (XWINDOW (window));
1190 if (!NILP (Vtransient_mark_mode) 1189 if (!NILP (Vtransient_mark_mode)
1191 && !NILP (current_buffer->mark_active)) 1190 && !NILP (current_buffer->mark_active))
1192 try_window (window, startp); 1191 {
1192 cancel_my_columns (XWINDOW (window));
1193 try_window (window, startp);
1194 }
1193 } 1195 }
1194 goto done; 1196 goto done;
1195 } 1197 }