mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
(direct_output_for_insert): Call set_iterator_to_next
with additional argument.
This commit is contained in:
parent
1574933b68
commit
a2e2a7f656
@ -1,5 +1,8 @@
|
||||
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.
|
||||
|
||||
|
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user