diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-11-15 16:26:50 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-11-15 16:26:50 +0100 |
commit | d5640c772998de7bccd76c3f8e934fa685cb2bb4 (patch) | |
tree | c367fc895dbad1d5baa3be94c6c23d0b59993bd9 /st.c | |
parent | 801ea034b652025dc22d26f6e1b802de932346da (diff) | |
download | st-d5640c772998de7bccd76c3f8e934fa685cb2bb4.tar.gz st-d5640c772998de7bccd76c3f8e934fa685cb2bb4.tar.bz2 |
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.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 |