From 8f32ac525f34aa32cd6dab4d13d0cfe84bf30879 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Tue, 6 Sep 2011 22:49:05 +0100 Subject: Canonicalise (a local copy of) the key structures given to termkey_keycmp() before comparing them --- termkey.c | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) (limited to 'termkey.c') diff --git a/termkey.c b/termkey.c index 9376916..a93e00f 100644 --- a/termkey.c +++ b/termkey.c @@ -1244,28 +1244,34 @@ char *termkey_strpkey(TermKey *tk, const char *str, TermKeyKey *key, TermKeyForm return (char *)str; } -int termkey_keycmp(TermKey *tk, const TermKeyKey *key1, const TermKeyKey *key2) +int termkey_keycmp(TermKey *tk, const TermKeyKey *key1p, const TermKeyKey *key2p) { - if(key1->type != key2->type) - return key1->type - key2->type; + /* Copy the key structs since we'll be modifying them */ + TermKeyKey key1 = *key1p, key2 = *key2p; - switch(key1->type) { + termkey_canonicalise(tk, &key1); + termkey_canonicalise(tk, &key2); + + if(key1.type != key2.type) + return key1.type - key2.type; + + switch(key1.type) { case TERMKEY_TYPE_UNICODE: - if(key1->code.codepoint != key2->code.codepoint) - return key1->code.codepoint - key2->code.codepoint; + if(key1.code.codepoint != key2.code.codepoint) + return key1.code.codepoint - key2.code.codepoint; case TERMKEY_TYPE_KEYSYM: - if(key1->code.sym != key2->code.sym) - return key1->code.sym - key2->code.sym; + if(key1.code.sym != key2.code.sym) + return key1.code.sym - key2.code.sym; case TERMKEY_TYPE_FUNCTION: - if(key1->code.number != key2->code.number) - return key1->code.number - key2->code.number; + if(key1.code.number != key2.code.number) + return key1.code.number - key2.code.number; case TERMKEY_TYPE_MOUSE: { - int cmp = strncmp(key1->code.mouse, key2->code.mouse, 4); + int cmp = strncmp(key1.code.mouse, key2.code.mouse, 4); if(cmp != 0) return cmp; } } - return key1->modifiers - key2->modifiers; + return key1.modifiers - key2.modifiers; } -- cgit v1.2.3