prefix key bindnigs with 'kbind'

This commit is contained in:
Dana Jansens 2003-04-05 09:23:21 +00:00
parent 98c0c676dd
commit 47cc179781

View file

@ -17,7 +17,7 @@ void keyparse(ParseToken *token)
/* just fall through and free the token */ /* just fall through and free the token */
} else if (top == NULL) { } else if (top == NULL) {
if (token->type == TOKEN_IDENTIFIER && if (token->type == TOKEN_IDENTIFIER &&
!g_ascii_strcasecmp("key", token->data.identifier)) { !g_ascii_strcasecmp("kbind", token->data.identifier)) {
top = token->data.identifier; top = token->data.identifier;
return; return;
} else { } else {