aboutsummaryrefslogtreecommitdiff
path: root/src/keys.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/keys.cc')
-rw-r--r--src/keys.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keys.cc b/src/keys.cc
index 462b7c1a..7f499153 100644
--- a/src/keys.cc
+++ b/src/keys.cc
@@ -338,7 +338,7 @@ void Keys::parseKey(char *key, char *commandName)
const char *beyond = keystr + strlen(keystr);
keycode = a_Utf8_decode(keystr, beyond, NULL);
} else if (key[0] == '0' && key[1] == 'x') {
- /* keysym. For details on values reported, see fltk's fltk/events.h */
+ /* keysym */
keycode = strtol(key, NULL, 0x10);
} else if ((st = getKeyCode(keystr)) == -1) {
MSG("Keys::parseKey unknown keyname: %s\n", keystr);