@@ -394,7 +394,7 @@ First some setup. Add `init_grep_defaults()` to `init_walken_defaults()` and add
----
static void init_walken_defaults(void)
{
- init_grep_defaults(the_repository);
+ init_grep_defaults();
}
...
@@ -170,7 +170,7 @@ struct grep_opt {
void *output_priv;
};
-void init_grep_defaults(struct repository *);
+void init_grep_defaults(void);
int grep_config(const char *var, const char *value, void *);
void grep_init(struct grep_opt *, struct repository *repo, const char *prefix);
void grep_destroy(void);
@@ -950,7 +950,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
OPT_END()
};
- init_grep_defaults(the_repository);
+ init_grep_defaults();
git_config(grep_cmd_config, NULL);
grep_init(&opt, the_repository, prefix);
@@ -131,7 +131,7 @@ static int log_line_range_callback(const struct option *option, const char *arg,
static void init_log_defaults(void)
{
- init_grep_defaults(the_repository);
+ init_grep_defaults();
init_diff_ui_defaults();
decoration_style = auto_decoration_style();
@@ -57,7 +57,7 @@ static void color_set(char *dst, const char *color_bytes)
* We could let the compiler do this, but without C99 initializers
* the code gets unwieldy and unreadable, so...
*/
-void init_grep_defaults(struct repository *repo)
+void init_grep_defaults(void)
{
struct grep_opt *opt = &grep_defaults;
static int run_once;
@@ -67,7 +67,6 @@ void init_grep_defaults(struct repository *repo)
run_once++;
memset(opt, 0, sizeof(*opt));
- opt->repo = repo;
opt->relative = 1;
opt->pathname = 1;
opt->max_depth = -1;
@@ -1834,7 +1834,7 @@ void repo_init_revisions(struct repository *r,
revs->commit_format = CMIT_FMT_DEFAULT;
revs->expand_tabs_in_log_default = 8;
- init_grep_defaults(revs->repo);
+ init_grep_defaults();
grep_init(&revs->grep_filter, revs->repo, prefix);
revs->grep_filter.status_only = 1;