diff options
author | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-04-07 20:19:34 +0100 |
---|---|---|
committer | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-04-07 20:19:34 +0100 |
commit | 0a101ff71eb1133889b5f1b28b7779832eddb013 (patch) | |
tree | 08a7d3e0890b9ccd05c5966ca949fb4da275cbfd /termkey.c | |
parent | c626393aeb80b5df6ddde8ba3196d0950566190f (diff) | |
download | termo-0a101ff71eb1133889b5f1b28b7779832eddb013.tar.gz termo-0a101ff71eb1133889b5f1b28b7779832eddb013.tar.xz termo-0a101ff71eb1133889b5f1b28b7779832eddb013.zip |
Bugfix termkey_strpkey parsing unicode with trailing content
Diffstat (limited to 'termkey.c')
-rw-r--r-- | termkey.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1124,13 +1124,7 @@ char *termkey_strpkey(TermKey *tk, const char *str, TermKeyKey *key, TermKeyForm size_t nbytes; char *endstr; - if(parse_utf8((unsigned char *)str, strlen(str), &key->code.codepoint, &nbytes) == TERMKEY_RES_KEY && - nbytes == strlen(str)) { - key->type = TERMKEY_TYPE_UNICODE; - fill_utf8(key); - str += nbytes; - } - else if((endstr = termkey_lookup_keyname(tk, str, &key->code.sym))) { + if((endstr = termkey_lookup_keyname(tk, str, &key->code.sym))) { key->type = TERMKEY_TYPE_KEYSYM; str = endstr; } @@ -1138,6 +1132,12 @@ char *termkey_strpkey(TermKey *tk, const char *str, TermKeyKey *key, TermKeyForm key->type = TERMKEY_TYPE_FUNCTION; str += nbytes; } + // Unicode must be last + else if(parse_utf8((unsigned char *)str, strlen(str), &key->code.codepoint, &nbytes) == TERMKEY_RES_KEY) { + key->type = TERMKEY_TYPE_UNICODE; + fill_utf8(key); + str += nbytes; + } // TODO: Consider mouse events? else return NULL; |