aboutsummaryrefslogtreecommitdiff
path: root/driver-csi.c
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-11-09 19:45:43 +0000
committerPaul LeoNerd Evans <leonerd@leonerd.org.uk>2008-11-09 19:45:43 +0000
commit09edf2377f3c534d930a604d9fe6a97265e372e2 (patch)
treeb68aa20d852329dd0a36567fe31105b79205cbe0 /driver-csi.c
parentde74ffa67f91b4b3415eabd54ae9a2c931a88a1b (diff)
downloadtermo-09edf2377f3c534d930a604d9fe6a97265e372e2.tar.gz
termo-09edf2377f3c534d930a604d9fe6a97265e372e2.tar.xz
termo-09edf2377f3c534d930a604d9fe6a97265e372e2.zip
Driver getkey() can return TERMKEY_RES_NONE which attempts getkey_simple() afterwards
Diffstat (limited to 'driver-csi.c')
-rw-r--r--driver-csi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver-csi.c b/driver-csi.c
index 05c7fa5..c03c98f 100644
--- a/driver-csi.c
+++ b/driver-csi.c
@@ -309,7 +309,7 @@ static termkey_result getkey(termkey_t *tk, void *info, termkey_key *key, int fo
return getkey_csi(tk, csi, 1, key, force);
}
else
- return (*tk->method.getkey_simple)(tk, key, force);
+ return TERMKEY_RES_NONE;
}
static termkey_keysym register_csi_ss3(termkey_csi *csi, termkey_type type, termkey_keysym sym, unsigned char cmd, const char *name)