sequencer: always allow tab after command name
authorPhillip Wood <phillip.wood@dunelm.org.uk>
Thu, 27 Jun 2019 14:12:44 +0000 (07:12 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 27 Jun 2019 17:31:00 +0000 (10:31 -0700)
The code that parses the todo list allows an unabbreviated command name
to be followed by a space or a tab, but if the command name is
abbreviated it only allows a space after it. Fix this inconsistency.

Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c
index f88a97fb10a322c21062ec8c102482677cfd0feb..919e3153f5b94212c7732bf141f9804095a8e134 100644 (file)
@@ -2100,7 +2100,7 @@ static int parse_insn_line(struct repository *r, struct todo_item *item,
                if (skip_prefix(bol, todo_command_info[i].str, &bol)) {
                        item->command = i;
                        break;
                if (skip_prefix(bol, todo_command_info[i].str, &bol)) {
                        item->command = i;
                        break;
-               } else if ((bol + 1 == eol || bol[1] == ' ') &&
+               } else if ((bol + 1 == eol || bol[1] == ' ' || bol[1] == '\t') &&
                           *bol == todo_command_info[i].c) {
                        bol++;
                        item->command = i;
                           *bol == todo_command_info[i].c) {
                        bol++;
                        item->command = i;