diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-23 11:00:23 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-23 11:00:23 -0700 |
| commit | fc7ef1e8ae8c19c06a4fa3d574c13d793e66186a (patch) | |
| tree | 217ae7c4628817bd61ec466c4c59a5f5941bffbb | |
| parent | Avoid doing the "filelist" thing, since "git-apply" picks up the files automa... (diff) | |
| download | git-fc7ef1e8ae8c19c06a4fa3d574c13d793e66186a.tar.gz git-fc7ef1e8ae8c19c06a4fa3d574c13d793e66186a.zip | |
Add "Index: " to the list of things that start a patch
This way we don't get it in the commit message, even if the patch had
been generated by cogito (or CVS, ugh) and people didn't add the proper
"---" marker.
| -rw-r--r-- | mailinfo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mailinfo.c b/mailinfo.c index 6c4d589823..ae279bffa5 100644 --- a/mailinfo.c +++ b/mailinfo.c @@ -193,7 +193,8 @@ static void handle_rest(void) do { if (!memcmp("diff -", line, 6) || - !memcmp("---", line, 3)) + !memcmp("---", line, 3) || + !memcmp("Index: ", line, 7)) out = patchfile; fputs(line, out); |
