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
c422836d
Commit
c422836d
authored
Mar 31, 1995
by
Karl Heuer
Browse files
(command_loop_1): If we ignore force_start, then also
ignore beg_unchanged and end_unchanged.
parent
3a3f61fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
src/keyboard.c
src/keyboard.c
+8
-2
No files found.
src/keyboard.c
View file @
c422836d
...
...
@@ -1100,8 +1100,14 @@ command_loop_1 ()
/* If the previous command tried to force a specific window-start,
forget about that, in case this command moves point far away
from that position. */
XWINDOW (selected_window)->force_start = Qnil;
from that position. But also throw away beg_unchanged and
end_unchanged information in that case, so that redisplay will
update the whole window properly. */
if (!NILP (XWINDOW (selected_window)->force_start))
{
XWINDOW (selected_window)->force_start = Qnil;
beg_unchanged = end_unchanged = 0;
}
cmd = read_key_sequence_cmd;
if (!NILP (Vexecuting_macro))
...
...
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