diff options
author | René Scharfe <l.s.r@web.de> | 2022-12-01 23:49:11 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-12-02 00:25:29 +0100 |
commit | c5630c4868c74aab2fc4e8a4ef4bfc9c51534e0e (patch) | |
tree | 2cbb3d66b9213eb800acbf816a67a6861e73517a /diff.h | |
parent | Downmerge a bit more for 2.38.2 (diff) | |
download | git-c5630c4868c74aab2fc4e8a4ef4bfc9c51534e0e.tar.xz git-c5630c4868c74aab2fc4e8a4ef4bfc9c51534e0e.zip |
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.h')
-rw-r--r-- | diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -539,6 +539,7 @@ int git_diff_ui_config(const char *var, const char *value, void *cb); #define diff_setup(diffopts) repo_diff_setup(the_repository, diffopts) #endif void repo_diff_setup(struct repository *, struct diff_options *); +struct option *add_diff_options(const struct option *, struct diff_options *); int diff_opt_parse(struct diff_options *, const char **, int, const char *); void diff_setup_done(struct diff_options *); int git_config_rename(const char *var, const char *value); |