Merge branch 'lt/gitweb'
[gitweb.git] / builtin-diff.c
index 47e0a37e212d9a7085714d1b5d6d8f2ffda8d5a6..1df531ba28d596a8a8b338cae0c4295fc16892f2 100644 (file)
@@ -250,12 +250,14 @@ int cmd_diff(int argc, const char **argv, char **envp)
         * Other cases are errors.
         */
 
-       git_config(git_diff_config);
+       git_config(git_diff_ui_config);
        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.