aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero <k0ga@shike2.com>2012-11-08 17:21:41 +0100
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2012-11-08 17:21:41 +0100
commit27468403cc436cf8197c886158e6e61f24ae5b8d (patch)
treefd78803187cbc46b167094ca64f18094578c93e7 /st.c
parentd5b80e05e8df29b989c072b6529745576056d0bc (diff)
downloadst-27468403cc436cf8197c886158e6e61f24ae5b8d.tar.gz
st-27468403cc436cf8197c886158e6e61f24ae5b8d.zip
Ignore DECARM sequence
DECARM modify the auto repeat settings in the keyboard, and since we can not modify this setting in the Xserver the best solution is only ignore it. --- st.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
Diffstat (limited to 'st.c')
-rw-r--r--st.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/st.c b/st.c
index f67a345..5e7e4ac 100644
--- a/st.c
+++ b/st.c
@@ -1480,8 +1480,7 @@ tsetmode(bool priv, bool set, int *args, int narg) {
1480 case 7: /* DECAWM -- Auto wrap */ 1480 case 7: /* DECAWM -- Auto wrap */
1481 MODBIT(term.mode, set, MODE_WRAP); 1481 MODBIT(term.mode, set, MODE_WRAP);
1482 break; 1482 break;
1483 case 8: /* XXX: DECARM -- Auto repeat */ 1483 case 8: /* DECARM -- Auto repeat (IGNORED) */
1484 break;
1485 case 0: /* Error (IGNORED) */ 1484 case 0: /* Error (IGNORED) */
1486 case 12: /* att610 -- Start blinking cursor (IGNORED) */ 1485 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1487 break; 1486 break;