diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-25T23·06+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-25T23·06+0100 |
commit | 93ba78d6f4632ef1c5228965e3edc8c0faf88c1e (patch) | |
tree | 85730c182a9f5f492ade8e8ccdb1c2356f9900bd /third_party/git/notes.h | |
parent | 6f8fbf4aa4b1654ab27d4829e114538761817de0 (diff) |
revert(3p/git): Revert merge of git upstream at v2.26.2 r/852
This causes cgit to serve error pages, which is undesirable. This reverts commit 5229c9b232de5bfa959ad6ebbb4c8192ac513352, reversing changes made to f2b211131f2347342dde63975b09cf603149f1a3.
Diffstat (limited to 'third_party/git/notes.h')
-rw-r--r-- | third_party/git/notes.h | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/third_party/git/notes.h b/third_party/git/notes.h index c1682c39a97b..76337f238472 100644 --- a/third_party/git/notes.h +++ b/third_party/git/notes.h @@ -261,26 +261,6 @@ struct display_notes_opt { }; /* - * Initialize a display_notes_opt to its default value. - */ -void init_display_notes(struct display_notes_opt *opt); - -/* - * This family of functions enables or disables the display of notes. In - * particular, 'enable_default_display_notes' will display the default notes, - * 'enable_ref_display_notes' will display the notes ref 'ref' and - * 'disable_display_notes' will disable notes, including those added by previous - * invocations of the 'enable_*_display_notes' functions. - * - * 'show_notes' is a pointer to a boolean which will be set to 1 if notes are - * displayed, else 0. It must not be NULL. - */ -void enable_default_display_notes(struct display_notes_opt *opt, int *show_notes); -void enable_ref_display_notes(struct display_notes_opt *opt, int *show_notes, - const char *ref); -void disable_display_notes(struct display_notes_opt *opt, int *show_notes); - -/* * Load the notes machinery for displaying several notes trees. * * If 'opt' is not NULL, then it specifies additional settings for the @@ -292,16 +272,16 @@ void disable_display_notes(struct display_notes_opt *opt, int *show_notes); * - extra_notes_refs may contain a list of globs (in the same style * as notes.displayRef) where notes should be loaded from. */ -void load_display_notes(struct display_notes_opt *opt); +void init_display_notes(struct display_notes_opt *opt); /* * Append notes for the given 'object_sha1' from all trees set up by - * load_display_notes() to 'sb'. + * init_display_notes() to 'sb'. * * If 'raw' is false the note will be indented by 4 places and * a 'Notes (refname):' header added. * - * You *must* call load_display_notes() before using this function. + * You *must* call init_display_notes() before using this function. */ void format_display_notes(const struct object_id *object_oid, struct strbuf *sb, const char *output_encoding, int raw); |