From 14987e458cdec59349974c3cc838a7308833a826 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Sun, 10 Feb 2008 20:30:09 +0000 Subject: [PATCH] Bugfix for unknown CSIfuncs --- termkey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termkey.c b/termkey.c index 2448833..2975f5a 100644 --- a/termkey.c +++ b/termkey.c @@ -105,7 +105,7 @@ termkey_t *termkey_new_full(int fd, int flags, size_t buffsize, int waittime) tk->keynames[i] = NULL; for(i = 0; i < tk->ncsifuncs; i++) - tk->csifuncs[i].sym = TERMKEY_SYM_NONE; + tk->csifuncs[i].sym = TERMKEY_SYM_UNKNOWN; // Special built-in names termkey_register_keyname(tk, TERMKEY_SYM_NONE, "NONE");