Rip out the old command parser, remove migration code

This commit is contained in:
Michael Stapelberg
2012-01-27 22:11:03 +00:00
parent 76ad5dac63
commit 3229f7677f
9 changed files with 22 additions and 1094 deletions

View File

@ -2,7 +2,7 @@
* vim:ts=4:sw=4:expandtab
*
* i3 - an improved dynamic tiling window manager
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
* © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
*
* handlers.c: Small handlers for various events (keypresses, focus changes,
* …).
@ -118,7 +118,7 @@ static void handle_key_press(xcb_key_press_event_t *event) {
}
}
char *json_result = parse_cmd(bind->command);
char *json_result = parse_command(bind->command);
FREE(json_result);
return;
}