summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-05 09:23:21 +0000
committerDana Jansens <danakj@orodu.net>2003-04-05 09:23:21 +0000
commit47cc179781aec47bf317c5c15879fa0dad95de86 (patch)
tree8f14271ed6891d7bcbdd9d661621c1d9c44897b1
parent98c0c676dd5cc45a92bb9c90902de7f4c7d16528 (diff)
prefix key bindnigs with 'kbind'
-rw-r--r--plugins/keyboard/keyparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/keyboard/keyparse.c b/plugins/keyboard/keyparse.c
index 61168641..15f6e0c5 100644
--- a/plugins/keyboard/keyparse.c
+++ b/plugins/keyboard/keyparse.c
@@ -17,7 +17,7 @@ void keyparse(ParseToken *token)
/* just fall through and free the token */
} else if (top == NULL) {
if (token->type == TOKEN_IDENTIFIER &&
- !g_ascii_strcasecmp("key", token->data.identifier)) {
+ !g_ascii_strcasecmp("kbind", token->data.identifier)) {
top = token->data.identifier;
return;
} else {