From: Gerd Moellmann Date: Wed, 14 Feb 2001 11:39:05 +0000 (+0000) Subject: (reseat_1): Set iterator's end_charpos to ZV. X-Git-Tag: emacs-pretest-21.0.98~17 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=78c663d858e322eadf2cd34d69df94478bf5df02;p=emacs.git (reseat_1): Set iterator's end_charpos to ZV. --- diff --git a/src/ChangeLog b/src/ChangeLog index 3d7451da8ad..78584a9473a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2001-02-14 Gerd Moellmann + + * xdisp.c (reseat_1): Set iterator's end_charpos to ZV. + 2001-02-13 Gerd Moellmann * insdel.c (del_range_1, del_range_byte, del_range_both): Handle diff --git a/src/xdisp.c b/src/xdisp.c index 94e3f41b14c..60354b9d8d6 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -3716,6 +3716,7 @@ reseat_1 (it, pos, set_stop_p) it->current.pos = it->position = pos; XSETBUFFER (it->object, current_buffer); + it->end_charpos = ZV; it->dpvec = NULL; it->current.dpvec_index = -1; it->current.overlay_string_index = -1;