aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 }