Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2022-12-02 01:49:11 +0300
committerJunio C Hamano <gitster@pobox.com>2022-12-02 02:25:29 +0300
commitc5630c4868c74aab2fc4e8a4ef4bfc9c51534e0e (patch)
tree2cbb3d66b9213eb800acbf816a67a6861e73517a /diff.c
parente7e5c6f715b2de7bea0d39c7d2ba887335b40aa0 (diff)
diff: factor out add_diff_options()
Add a function for appending the parseopts member of struct diff_options to a struct option array. Use it in two sites instead of accessing the parseopts member directly. Decoupling callers from diff internals like that allows us to change the latter. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/diff.c b/diff.c
index 648f6717a5..a74bfb4a60 100644
--- a/diff.c
+++ b/diff.c
@@ -5397,6 +5397,12 @@ static int diff_opt_rotate_to(const struct option *opt, const char *arg, int uns
return 0;
}
+struct option *add_diff_options(const struct option *opts,
+ struct diff_options *options)
+{
+ return parse_options_concat(opts, options->parseopts);
+}
+
static void prep_parse_options(struct diff_options *options)
{
struct option parseopts[] = {