Xinqi Bao's Git
projects
/
st.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
4a8574b
)
Remove unnecessary break
author
noname <
[email protected]
>
Fri, 25 Apr 2014 14:27:15 +0000
(18:27 +0400)
committer
Roberto E. Vargas Caballero <
[email protected]
>
Fri, 25 Apr 2014 22:03:08 +0000
(
00:03
+0200)
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
653cd49
..
7dd5e04
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-1781,7
+1781,6
@@
tsetmode(bool priv, bool set, int *args, int narg) {
for(lim = args + narg; args < lim; ++args) {
if(priv) {
switch(*args) {
for(lim = args + narg; args < lim; ++args) {
if(priv) {
switch(*args) {
- break;
case 1: /* DECCKM -- Cursor key */
MODBIT(term.mode, set, MODE_APPCURSOR);
break;
case 1: /* DECCKM -- Cursor key */
MODBIT(term.mode, set, MODE_APPCURSOR);
break;