OSDN Git Service

builtin-diff: turn recursive on when defaulting to --patch format.
authorJunio C Hamano <junkio@cox.net>
Sun, 2 Jul 2006 05:15:40 +0000 (22:15 -0700)
committerJunio C Hamano <junkio@cox.net>
Sun, 2 Jul 2006 05:15:40 +0000 (22:15 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-diff.c

index 47e0a37..d520c7c 100644 (file)
@@ -254,8 +254,10 @@ int cmd_diff(int argc, const char **argv, char **envp)
        init_revisions(&rev);
 
        argc = setup_revisions(argc, argv, &rev, NULL);
-       if (!rev.diffopt.output_format)
+       if (!rev.diffopt.output_format) {
                rev.diffopt.output_format = DIFF_FORMAT_PATCH;
+               diff_setup_done(&rev.diffopt);
+       }
 
        /* Do we have --cached and not have a pending object, then
         * default to HEAD by hand.  Eek.