Mercurial > emacs
changeset 16395:c6b901f809da
(vmotion, compute_motion): Fill in ovstring_chars_done in the return value.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 06 Oct 1996 20:44:10 +0000 |
parents | 675944d1abc9 |
children | 4e4cc27b2a2a |
files | src/indent.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Sun Oct 06 19:50:49 1996 +0000 +++ b/src/indent.c Sun Oct 06 20:44:10 1996 +0000 @@ -1109,6 +1109,8 @@ val_compute_motion.hpos = hpos; val_compute_motion.vpos = vpos; val_compute_motion.prevhpos = prev_hpos; + /* We alalways handle all of them here; none of them remain to do. */ + val_compute_motion.ovstring_chars_done = 0; /* Nonzero if have just continued a line */ val_compute_motion.contin @@ -1328,6 +1330,7 @@ val_vmotion.hpos = lmargin; val_vmotion.contin = 0; val_vmotion.prevhpos = 0; + val_vmotion.ovstring_chars_done = 0; return &val_vmotion; }