From: Yann Dirson Date: Mon, 17 Apr 2006 11:41:49 +0000 (+0200) Subject: Allow empty lines in info/grafts X-Git-Tag: v1.3.0~12 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=360204c324ca9178e2bcb4d75f3986201f8ac7e1;p=git.git Allow empty lines in info/grafts In addition to the existing comment support, that just allows the user to use a convention that works pretty much everywhere else. Signed-off-by: Yann Dirson Signed-off-by: Junio C Hamano --- diff --git a/commit.c b/commit.c index 05c4c923..2717dd81 100644 --- a/commit.c +++ b/commit.c @@ -160,7 +160,7 @@ struct commit_graft *read_graft_line(char *buf, int len) if (buf[len-1] == '\n') buf[--len] = 0; - if (buf[0] == '#') + if (buf[0] == '#' || buf[0] == '\0') return NULL; if ((len + 1) % 41) { bad_graft_data: