diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-16 07:19:19 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-16 07:19:19 -0700 |
commit | 15346886504761400e6db3930b74cc59adfce6f9 (patch) | |
tree | 3b73f8976f7c330b70b820a53add3f0a129d83aa /parser.l | |
parent | fbc56f3575640f4acbdb6dbee78a299132fe55b8 (diff) | |
download | txr-15346886504761400e6db3930b74cc59adfce6f9.tar.gz txr-15346886504761400e6db3930b74cc59adfce6f9.tar.bz2 txr-15346886504761400e6db3930b74cc59adfce6f9.zip |
linenoise: oldpos-related multi-line refresh issue.
The oldpos variable for tracing the previous cursor position
as an absolute offset into the display data is not appropriate
any more under enhanced multi-line mode. The reason is that
edit operations can completely replace the buffer (e.g.
history recall). When the buffer is replaced, because there
can be arbitrary line breaks in the data, the oldpos
variable's saved position has no meaning relative to the new
buffer contents. But the only use of oldpos is to calculate
the previous *row* of the cursor position! So, we can replace
oldpos with a variable that just remembers the row directly.
As a bonus, we can get rid of the calculation which tries to
recover the oldrow from oldpos.
* linenoise/linenoise.c (struct lino_state): Removed member
oldpos. Added member oldrow.
(struct row_values): Array reduced to two elements.
(screen_rows): Doesn't take oldpos argument any more.
Current cursor position returned in out.rows[1].
(refresh_multiline): Some variables renamed. rpos2 becomes
nrow (new row position). old_rows is oldmaxrows to avoid
confusion with l->oldrow. The rpos variable (old row
position) is gone: its uses are replaced with l->oldrow.
Near the end of the function, we save the new cursor row
position (nrow) in l->oldrow, in the same spot where
we previously saved the current position in l->oldpos.
(edit): Initialize l->oldrow to 0. Remove initialization
of l->oldpos.
Diffstat (limited to 'parser.l')
0 files changed, 0 insertions, 0 deletions