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
a2e2a7f6
Commit
a2e2a7f6
authored
Oct 13, 2000
by
Gerd Moellmann
Browse files
(direct_output_for_insert): Call set_iterator_to_next
with additional argument.
parent
1574933b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/ChangeLog
src/ChangeLog
+3
-0
src/dispnew.c
src/dispnew.c
+2
-2
No files found.
src/ChangeLog
View file @
a2e2a7f6
2000-10-13 Gerd Moellmann <gerd@gnu.org>
* dispnew.c (direct_output_for_insert): Call set_iterator_to_next
with additional argument.
* xdisp.c (cursor_row_p): New function.
(try_cursor_movement, display_line): Use it.
...
...
src/dispnew.c
View file @
a2e2a7f6
...
...
@@ -3262,7 +3262,7 @@ direct_output_for_insert (g)
delta
+=
1
;
delta_bytes
+=
it
.
len
;
set_iterator_to_next
(
&
it
);
set_iterator_to_next
(
&
it
,
1
);
}
/* Give up if we hit the right edge of the window. We would have
...
...
@@ -3280,7 +3280,7 @@ direct_output_for_insert (g)
{
if
(
it2
.
c
==
'\t'
)
return
0
;
set_iterator_to_next
(
&
it2
);
set_iterator_to_next
(
&
it2
,
1
);
}
/* Number of new glyphs produced. */
...
...
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