Commit 17290f4

Roberto E. Vargas Caballero <k0ga@shike2.com>
2014-04-26 03:30:53
Fix misplaced break
This misplaced break was causing an incorrect fall through from DSR to DECSTBM.
1 parent 43d74ef
Changed files (1)
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;