summaryrefslogtreecommitdiff
path: root/notes.c
diff options
context:
space:
mode:
authorLibravatar Denton Liu <liu.denton@gmail.com>2019-12-09 05:10:41 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2019-12-09 13:36:44 -0800
commite6e230eeae0f3cb46c4c356e6cd0a0f1119a2a83 (patch)
tree0234ae345c7d5255f6d3fc5b41d79c485de100f2 /notes.c
parentnotes: rename to load_display_notes() (diff)
downloadtgif-e6e230eeae0f3cb46c4c356e6cd0a0f1119a2a83.tar.xz
notes: create init_display_notes() helper
We currently open code the initialization for revs->notes_opt. Abstract this away into a helper function so that the logic can be reused in a future commit. This is slightly wasteful as we memset the struct twice but this is only run once so it shouldn't have any major effect. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes.c')
-rw-r--r--notes.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/notes.c b/notes.c
index fd6cef14a3..53d1e7767c 100644
--- a/notes.c
+++ b/notes.c
@@ -1039,6 +1039,12 @@ struct notes_tree **load_notes_trees(struct string_list *refs, int flags)
return trees;
}
+void init_display_notes(struct display_notes_opt *opt)
+{
+ memset(opt, 0, sizeof(*opt));
+ opt->use_default_notes = -1;
+}
+
void load_display_notes(struct display_notes_opt *opt)
{
char *display_ref_env;