diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-22 19:46:46 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-22 19:46:46 +0200 |
commit | a7922bd1d94ace6d14e40a27820e217cd6c4e632 (patch) | |
tree | 9441bd9b362384260de3cc1d1a9415462a319fbb /st.c | |
parent | ce3f4fc647be3ab28f934db9365445a56ebd85bf (diff) | |
download | st-a7922bd1d94ace6d14e40a27820e217cd6c4e632.tar.gz st-a7922bd1d94ace6d14e40a27820e217cd6c4e632.tar.bz2 |
added F1-12 key, fixed DCH and ICH.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -497,21 +497,21 @@ tdeletechar(int n) { return; } memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src], size * sizeof(Glyph)); - tclearregion(term.col-size, term.c.y, term.col-1, term.c.y); + tclearregion(term.col-n, term.c.y, term.col-1, term.c.y); } void tinsertblank(int n) { int src = term.c.x; int dst = src + n; - int size = term.col - n - src; + int size = term.col - dst; if(dst >= term.col) { tclearregion(term.c.x, term.c.y, term.col-1, term.c.y); return; } memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src], size * sizeof(Glyph)); - tclearregion(src, term.c.y, dst, term.c.y); + tclearregion(src, term.c.y, dst - 1, term.c.y); } void @@ -1173,7 +1173,7 @@ xcursor(int mode) { if(term.line[term.c.y][term.c.x].state & GLYPH_SET) g.c = term.line[term.c.y][term.c.x].c; - + /* remove the old cursor */ if(term.line[oldy][oldx].state & GLYPH_SET) xdraws(&term.line[oldy][oldx].c, term.line[oldy][oldx], oldx, oldy, 1); |