Remove unnecessary break
This commit is contained in:
parent
4a8574b439
commit
2d67f99d28
1
st.c
1
st.c
|
@ -1781,7 +1781,6 @@ tsetmode(bool priv, bool set, int *args, int narg) {
|
||||||
for(lim = args + narg; args < lim; ++args) {
|
for(lim = args + narg; args < lim; ++args) {
|
||||||
if(priv) {
|
if(priv) {
|
||||||
switch(*args) {
|
switch(*args) {
|
||||||
break;
|
|
||||||
case 1: /* DECCKM -- Cursor key */
|
case 1: /* DECCKM -- Cursor key */
|
||||||
MODBIT(term.mode, set, MODE_APPCURSOR);
|
MODBIT(term.mode, set, MODE_APPCURSOR);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue