diff options
| author | Aiden Gall <aiden@aidengall.xyz> | 2025-06-19 12:15:18 +0100 |
|---|---|---|
| committer | Aiden Gall <aiden@aidengall.xyz> | 2025-06-19 12:15:18 +0100 |
| commit | 1045eb73fe0ccc37b9aae8feb4294822463644c4 (patch) | |
| tree | e9c3f89d716904e18b1402f79719401b1392768e /st.c | |
| parent | 2f55584aad1d25de361752831ef0ba0162289f53 (diff) | |
| parent | 6009e6e25bdff9548f085e9ae562b1ca305d3a0b (diff) | |
merge upstream
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1927,7 +1927,7 @@ csihandle(void) } break; case 1: /* above */ - if (term.c.y >= 1) + if (term.c.y > 0) tclearregion(0, 0, term.col-1, term.c.y-1, 1); tclearregion(0, term.c.y, term.c.x, term.c.y, 1); break; |
