Ramkumar Ramachandra wrote: > +++ b/builtin/revert.c > @@ -727,7 +727,11 @@ static struct commit *parse_insn_line(char *bol, char *eol, struct replay_opts * > } else > return NULL; > > + /* Eat up extra spaces/ tabs before object name */ > + while (*bol == ' ' || *bol == '\t') > + bol += 1; > - end_of_object_name = bol + strcspn(bol, " \n"); Why not use strspn? What happens if I use a tab immediately after the pick/revert keyword? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html