diff options
| author | Gerd Moellmann | 2001-02-14 11:39:05 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-14 11:39:05 +0000 |
| commit | 78c663d858e322eadf2cd34d69df94478bf5df02 (patch) | |
| tree | 0834937061702b979367b0cb86506f64497051c9 /src | |
| parent | dd4e0e557dc7da0cf25356b9b53f380231259c95 (diff) | |
| download | emacs-78c663d858e322eadf2cd34d69df94478bf5df02.tar.gz emacs-78c663d858e322eadf2cd34d69df94478bf5df02.zip | |
(reseat_1): Set iterator's end_charpos to ZV.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3d7451da8ad..78584a9473a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-02-14 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (reseat_1): Set iterator's end_charpos to ZV. | ||
| 4 | |||
| 1 | 2001-02-13 Gerd Moellmann <gerd@gnu.org> | 5 | 2001-02-13 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * insdel.c (del_range_1, del_range_byte, del_range_both): Handle | 7 | * 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) | |||
| 3716 | 3716 | ||
| 3717 | it->current.pos = it->position = pos; | 3717 | it->current.pos = it->position = pos; |
| 3718 | XSETBUFFER (it->object, current_buffer); | 3718 | XSETBUFFER (it->object, current_buffer); |
| 3719 | it->end_charpos = ZV; | ||
| 3719 | it->dpvec = NULL; | 3720 | it->dpvec = NULL; |
| 3720 | it->current.dpvec_index = -1; | 3721 | it->current.dpvec_index = -1; |
| 3721 | it->current.overlay_string_index = -1; | 3722 | it->current.overlay_string_index = -1; |