summaryrefslogtreecommitdiff
path: root/plugins/keyboard/keyparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/keyboard/keyparse.c')
-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);