=== modified file 't/12strpkey.c' --- t/12strpkey.c 2011-04-07 19:19:34 +0000 +++ t/12strpkey.c 2011-04-07 19:14:44 +0000 @@ -9,7 +9,7 @@ #define CLEAR_KEY do { key.type = -1; key.code.codepoint = -1; key.modifiers = -1; key.utf8[0] = 0; } while(0) - plan_tests(53); + plan_tests(48); tk = termkey_new(0, TERMKEY_FLAG_NOTERMIOS); @@ -22,14 +22,6 @@ is_str(endp, "", "consumed entire input for unicode/A/0"); CLEAR_KEY; - endp = termkey_strpkey(tk, "A and more", &key, 0); - is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/A/0 trailing"); - is_int(key.code.codepoint, 'A', "key.code.codepoint for unicode/A/0 trailing"); - is_int(key.modifiers, 0, "key.modifiers for unicode/A/0 trailing"); - is_str(key.utf8, "A", "key.utf8 for unicode/A/0 trailing"); - is_str(endp, " and more", "points at string tail for unicode/A/0 trailing"); - - CLEAR_KEY; endp = termkey_strpkey(tk, "C-b", &key, 0); is_int(key.type, TERMKEY_TYPE_UNICODE, "key.type for unicode/b/CTRL"); is_int(key.code.codepoint, 'b', "key.code.codepoint for unicode/b/CTRL"); === modified file 'termkey.c' --- termkey.c 2011-04-07 19:19:34 +0000 +++ termkey.c 2011-04-02 14:07:30 +0000 @@ -1124,7 +1124,13 @@ size_t nbytes; char *endstr; - if((endstr = termkey_lookup_keyname(tk, str, &key->code.sym))) { + 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))) { key->type = TERMKEY_TYPE_KEYSYM; str = endstr; } @@ -1132,12 +1138,6 @@ 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;