aboutsummarylogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorChristoph Lohmann2012-11-15 16:26:50 +0100
committerChristoph Lohmann2012-11-15 16:26:50 +0100
commit220a4043f546deba764a4d46e85abdbf0b5b9370 (patch)
tree6e17e0b13df4b2fd66427ca3728fbe58ff8e2868 /st.c
parenta0f766d176f318bf9cb7ac8598048ea8373efccb (diff)
downloadaur-220a4043f546deba764a4d46e85abdbf0b5b9370.tar.gz
Fixing the return and keypad enter sent characters. Terminals produce \r. And
some minor style changes.
Diffstat (limited to 'st.c')
-rw-r--r--st.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/st.c b/st.c
index 7b7bd55b8776..ba93f2fec177 100644
--- a/st.c
+++ b/st.c
@@ -2100,15 +2100,19 @@ tputc(char *c, int len) {
sel.bx = -1;
if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
tnewline(1); /* always go to first col */
- if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col)
+
+ if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col) {
memmove(&term.line[term.c.y][term.c.x+1],
&term.line[term.c.y][term.c.x],
(term.col - term.c.x - 1) * sizeof(Glyph));
+ }
+
tsetchar(c, &term.c.attr, term.c.x, term.c.y);
- if(term.c.x+1 < term.col)
+ if(term.c.x+1 < term.col) {
tmoveto(term.c.x+1, term.c.y);
- else
+ } else {
term.c.state |= CURSOR_WRAPNEXT;
+ }
}
int