This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fix misplaced break
This misplaced break was causing an incorrect fall through from DSR to DECSTBM.
master
Roberto E. Vargas Caballero
10 years ago
parent
43d74ef362
commit
17290f493b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
st.c
+ 1
- 1
st.c
View File
@ -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
;
Write
Preview
Loading…
Cancel
Save