X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=plugins%2Fkeyboard%2Fkeyparse.c;h=61c7cd9d62aff97a15958c3f82057bfec7de7b02;hb=0e28a07e3d6677aa6af9ad97fbc55f8101f3fdf2;hp=95a60ba335c8e2de44ddd9d0783ef2481269b748;hpb=68ff2eb3d2d7874e780000143cbee9a8e7c2e57f;p=chaz%2Fopenbox diff --git a/plugins/keyboard/keyparse.c b/plugins/keyboard/keyparse.c index 95a60ba3..61c7cd9d 100644 --- a/plugins/keyboard/keyparse.c +++ b/plugins/keyboard/keyparse.c @@ -17,11 +17,11 @@ 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 { - yyerror("syntax error (expected Key)"); + yyerror("syntax error (expected kbind)"); err = TRUE; } } else if (chain == NULL) { @@ -75,15 +75,15 @@ void keyparse(ParseToken *token) GList *strchain = NULL; /* build a list of just char*'s */ - for (it = chain; it; it = it->next) { + for (it = chain; it; it = it->next) strchain = g_list_append(strchain, ((ParseToken*)it->data)->data.identifier); - g_print("Chain %s\n", ((ParseToken*)it->data)->data.identifier); - } /* 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) @@ -97,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);