summaryrefslogtreecommitdiff
path: root/plugins/keyboard
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-05 17:22:35 +0000
committerDana Jansens <danakj@orodu.net>2003-04-05 17:22:35 +0000
commit038e61197479865d15cb6ef686e80e47bf2fd843 (patch)
treefe6b5ca0e24e118c610740c0d898c555440a4d76 /plugins/keyboard
parentbca8082d6d09a16a116c70001469a576b93157ce (diff)
better error msgs
Diffstat (limited to 'plugins/keyboard')
-rw-r--r--plugins/keyboard/keyparse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/keyboard/keyparse.c b/plugins/keyboard/keyparse.c
index 15f6e0c5..ba283dd8 100644
--- a/plugins/keyboard/keyparse.c
+++ b/plugins/keyboard/keyparse.c
@@ -21,7 +21,7 @@ void keyparse(ParseToken *token)
top = token->data.identifier;
return;
} else {
- yyerror("syntax error (expected Key)");
+ yyerror("syntax error (expected kbind)");
err = TRUE;
}
} else if (chain == NULL) {
@@ -95,7 +95,7 @@ void keyparse(ParseToken *token)
if (kbind(strchain, action))
action = NULL; /* don't free this if kbind succeeds */
else
- yyerror("failed to add binding");
+ yyerror("failed to add key binding");
/* free the char*'s */
g_list_free(strchain);