Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6f27fa9b
Commit
6f27fa9b
authored
Oct 10, 1994
by
Richard M. Stallman
Browse files
(redisplay_window): Fix Oct 1 change:
don't call cancel_my_columns unless we will call try_window.
parent
f0c5b712
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/xdisp.c
src/xdisp.c
+4
-2
No files found.
src/xdisp.c
View file @
6f27fa9b
...
@@ -1186,10 +1186,12 @@ redisplay_window (window, just_this_one)
...
@@ -1186,10 +1186,12 @@ redisplay_window (window, just_this_one)
}
}
/* If we are highlighting the region,
/* If we are highlighting the region,
then we just changed the region, so redisplay to show it. */
then we just changed the region, so redisplay to show it. */
cancel_my_columns
(
XWINDOW
(
window
));
if
(
!
NILP
(
Vtransient_mark_mode
)
if
(
!
NILP
(
Vtransient_mark_mode
)
&&
!
NILP
(
current_buffer
->
mark_active
))
&&
!
NILP
(
current_buffer
->
mark_active
))
try_window
(
window
,
startp
);
{
cancel_my_columns
(
XWINDOW
(
window
));
try_window
(
window
,
startp
);
}
}
}
goto
done
;
goto
done
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment