X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=plugins%2Fkeyboard%2Fkeyparse.c;h=61c7cd9d62aff97a15958c3f82057bfec7de7b02;hb=8955a2b70fc3964f7f7eda6e260deefef0e34029;hp=15f6e0c5f3c87726edcd886a5f53acd144f8dc1c;hpb=47cc179781aec47bf317c5c15879fa0dad95de86;p=chaz%2Fopenbox diff --git a/plugins/keyboard/keyparse.c b/plugins/keyboard/keyparse.c index 15f6e0c5..61c7cd9d 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) { @@ -82,6 +82,8 @@ void keyparse(ParseToken *token) /* these use the argument */ if (action->func == action_execute || action->func == action_restart) action->data.execute.path = g_strdup(arg_str); + else if (action->func == action_showmenu) + action->data.showmenu.name = g_strdup(arg_str); if ((action->func == action_desktop || action->func == action_send_to_desktop) && arg_int) @@ -95,7 +97,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);