JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix misplaced break
[st.git] / st.c
diff --git a/st.c b/st.c
index 2945c1b..bd0c59e 100644 (file)
--- 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;