diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-09-14 20:48:31 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-09-14 20:48:31 -0700 |
commit | 19ece726e194f86b8d316d35b65daa92c245453b (patch) | |
tree | 0c13f180db74f7bd90c5d2df9d4a7c03a74765ce /builtin/log.c | |
parent | Merge branch 'jc/maint-ident-missing-human-name' into maint-1.7.11 (diff) | |
parent | log: fix --quiet synonym for -s (diff) | |
download | tgif-19ece726e194f86b8d316d35b65daa92c245453b.tar.xz |
Merge branch 'jk/maint-quiet-is-synonym-to-s-in-log' into maint-1.7.11
* jk/maint-quiet-is-synonym-to-s-in-log:
log: fix --quiet synonym for -s
Diffstat (limited to 'builtin/log.c')
-rw-r--r-- | builtin/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/log.c b/builtin/log.c index 54f24e2088..a8249d3c01 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -108,9 +108,9 @@ static void cmd_log_init_finish(int argc, const char **argv, const char *prefix, PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN | PARSE_OPT_KEEP_DASHDASH); - argc = setup_revisions(argc, argv, rev, opt); if (quiet) rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT; + argc = setup_revisions(argc, argv, rev, opt); /* Any arguments at this point are not recognized */ if (argc > 1) |