all repos — st @ 17290f493b3701f57f1e8a1f2d26fc12ab968928

st (suckless terminal) config

Fix misplaced break

This misplaced break was causing an incorrect fall through
from DSR to DECSTBM.
Roberto E. Vargas Caballero k0ga@shike2.com
commit

17290f493b3701f57f1e8a1f2d26fc12ab968928

parent

43d74ef362b7dc5da3232cdc9412981ea6386df6

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -2087,8 +2087,8 @@ if (csiescseq.arg[0] == 6) {

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;