Skip to content

Commit

Permalink
format-patch: fix diff format option implementation
Browse files Browse the repository at this point in the history
The updates forgot to make the diff go recursive.
  • Loading branch information
Junio C Hamano committed Jun 29, 2006
1 parent f252281 commit 27e1b12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builtin-log.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ int cmd_format_patch(int argc, const char **argv, char **envp)
rev.diff = 1;
rev.combine_merges = 0;
rev.ignore_merges = 1;
rev.diffopt.msg_sep = "---\n";
rev.diffopt.msg_sep = "";
rev.diffopt.recursive = 1;

git_config(git_format_config);
rev.extra_headers = extra_headers;
Expand Down

0 comments on commit 27e1b12

Please sign in to comment.