st
simple terminal
git clone https://9o.is/git/st.git
commit 13a3a94646f71904f53ebfad0fd5d70bd0ff2ac8 parent 0f7e96b9e8d7b42e2ca275d959f174393e98dc28 Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Sat, 26 Apr 2014 09:30:53 +0200 Fix misplaced break This misplaced break was causing an incorrect fall through from DSR to DECSTBM. Diffstat:
| M | st.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -2087,8 +2087,8 @@ csihandle(void) { len = snprintf(buf, sizeof(buf),"\033[%i;%iR", term.c.y+1, term.c.x+1); ttywrite(buf, len); - break; } + break; case 'r': /* DECSTBM -- Set Scrolling Region */ if(csiescseq.priv) { goto unknown;