From 4282f3715c7d4307f57c27edf66874762bdee858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Tue, 27 Sep 2016 23:43:46 +0200 Subject: [PATCH] Fix cursor keys etc. in unibilium unibi_pkey_xmit was the wrong constant. --- driver-ti.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/driver-ti.c b/driver-ti.c index a4a5a27..719dc2e 100644 --- a/driver-ti.c +++ b/driver-ti.c @@ -288,7 +288,7 @@ load_terminfo (termo_ti_t *ti, const char *term) // instances for multiple different termtypes, and it's different by the // time we want to use it #ifdef HAVE_UNIBILIUM - const char *keypad_xmit = unibi_get_str (unibi, unibi_pkey_xmit); + const char *keypad_xmit = unibi_get_str (unibi, unibi_keypad_xmit); #endif if (keypad_xmit) @@ -297,7 +297,7 @@ load_terminfo (termo_ti_t *ti, const char *term) ti->start_string = NULL; #ifdef HAVE_UNIBILIUM - const char *keypad_local = unibi_get_str (unibi, unibi_pkey_local); + const char *keypad_local = unibi_get_str (unibi, unibi_keypad_local); #endif if (keypad_local)