mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi: IND+RI now clears LCF
This commit is contained in:
parent
6faa9955ba
commit
7fce1720d6
2 changed files with 3 additions and 0 deletions
|
|
@ -100,6 +100,7 @@
|
|||
Column Flag_).
|
||||
* `LF` now always clears `LCF`. Previously, it only cleared it when
|
||||
the cursor was **not** at the bottom of the scrolling region.
|
||||
* `IND` and `RI` now clears `LCF`.
|
||||
|
||||
|
||||
### Security
|
||||
|
|
|
|||
2
csi.c
2
csi.c
|
|
@ -577,6 +577,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
.start = term->grid->cursor.point.row,
|
||||
.end = term->scroll_region.end},
|
||||
count);
|
||||
term->grid->cursor.lcf = false;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -595,6 +596,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
.start = term->grid->cursor.point.row,
|
||||
.end = term->scroll_region.end},
|
||||
count);
|
||||
term->grid->cursor.lcf = false;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue