From: Christian Heller Date: Fri, 7 Nov 2014 14:02:45 +0000 (+0100) Subject: Client: Minor code styling issue. X-Git-Tag: tce~615 X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=66f67a2d7e34283a2261b90e5c3c6cdf87fdae7f;p=plomrogue Client: Minor code styling issue. --- diff --git a/src/client/control.c b/src/client/control.c index 536c567..d525d56 100644 --- a/src/client/control.c +++ b/src/client/control.c @@ -97,6 +97,8 @@ static uint8_t try_0args(struct Command * command, char * match, void (* f) ()) return 0; } + + static uint8_t try_1args(struct Command * command, char * match, void (* f) (char), char c) { @@ -110,10 +112,6 @@ static uint8_t try_1args(struct Command * command, char * match, -/* If "command" fits pattern "keyb_XY" with Y a proper keybinding list ID char - * and X one of "u" (for "up"), "d" (for "down") or "m" (for "modify"), move up - * or down or modify entry in the selected keybinding list. - */ static uint8_t try_kb_manip(char * command) { char * cmp = "keyb_";