diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-17 15:27:19 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-17 16:24:14 -0700 |
commit | bf142ec4346385553918bc53f203b205091aa362 (patch) | |
tree | 5512961c02737495d66f1ef523bcc94dbdd6662e /diff.c | |
parent | 1ecc1cbd3a7642c4f517d086d7b45d6341172dfe (diff) | |
download | git-bf142ec4346385553918bc53f203b205091aa362.tar.gz |
diff: reject unknown change class given to --diff-filter
We used to accept "git diff --diff-filter=Q" (note that there is no
such change class 'Q') silently and showed no output (because there
is no such change class 'Q').
Error out when such an input is given.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3537,7 +3537,7 @@ static int parse_diff_filter_opt(const char *optarg, struct diff_options *opt) bit = (0 <= optch && optch <= 'Z') ? filter_bit[optch] : 0; if (!bit) - continue; /* ignore unknown ones, like we always have */ + return optarg[i]; opt->filter |= bit; } return 0; |