home · contact · privacy
Client: Minor code styling issue.
authorChristian Heller <c.heller@plomlompom.de>
Fri, 7 Nov 2014 14:02:45 +0000 (15:02 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 7 Nov 2014 14:02:45 +0000 (15:02 +0100)
src/client/control.c

index 536c5675bb3e78f7a13af556612031151e778421..d525d56fc5b228da59edb082f0e65a8f8368a698 100644 (file)
@@ -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_";