From 17290f493b3701f57f1e8a1f2d26fc12ab968928 Mon Sep 17 00:00:00 2001 From: "Roberto E. Vargas Caballero" Date: Sat, 26 Apr 2014 09:30:53 +0200 Subject: [PATCH] Fix misplaced break This misplaced break was causing an incorrect fall through from DSR to DECSTBM. --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index 2945c1b..bd0c59e 100644 --- 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; -- 1.7.10.4