summaryrefslogtreecommitdiff
path: root/diff-merges.h
diff options
context:
space:
mode:
authorSergey Organov <sorganov@gmail.com>2021-05-20 21:46:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-05-21 00:24:14 (GMT)
commit19b2517f95a0a908a8ada7417cf0717299e7e1aa (patch)
treeaf73ed18ebbc055b40876fa2f1b996f28ac22d4b /diff-merges.h
parente0b16421b17fffa2544eebfcb570fdb766fd0bc4 (diff)
downloadgit-19b2517f95a0a908a8ada7417cf0717299e7e1aa.zip
git-19b2517f95a0a908a8ada7417cf0717299e7e1aa.tar.gz
git-19b2517f95a0a908a8ada7417cf0717299e7e1aa.tar.bz2
diff-merges: move specific diff-index "-m" handling to diff-index
Move specific handling of "-m" for diff-index to diff-index.c, so diff-merges is left to handle only diff for merges options. Being a better design by itself, this is especially essential in preparation for letting -m imply -p, as "diff-index -m" obviously should not imply -p, as it's entirely unrelated. To handle this, in addition to moving specific diff-index "-m" code out of diff-merges, we introduce new diff_merges_suppress_options_parsing() and call it before generic options processing in cmd_diff_index(). This new diff_merges_suppress_options_parsing() could then be reused and called before invocations of setup_revisions() for other commands that don't need --diff-merges options, but that's outside of the scope of these patch series. Signed-off-by: Sergey Organov <sorganov@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff-merges.h')
-rw-r--r--diff-merges.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/diff-merges.h b/diff-merges.h
index 09d9a6c..b5d57f6 100644
--- a/diff-merges.h
+++ b/diff-merges.h
@@ -11,6 +11,8 @@ struct rev_info;
int diff_merges_config(const char *value);
+void diff_merges_suppress_options_parsing(void);
+
int diff_merges_parse_opts(struct rev_info *revs, const char **argv);
void diff_merges_suppress(struct rev_info *revs);