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
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-03-30 00:57:27 +0400
committerJunio C Hamano <gitster@pobox.com>2011-03-30 01:31:59 +0400
commit3a03cf6b1d1cf5d05edec1781446a26782eaff09 (patch)
tree3b1e226b602b44680576bb4cf099a61bafa00884 /notes.h
parent304cc11c6566cf22e811aa791988c61b6d291973 (diff)
notes: refactor display notes default handling
This is in preparation for more notes-related revision command-line options. The "suppress_default_notes" option is renamed to "use_default_notes", and is now a tri-state with values less than one indicating "not set". If the value is "not set", then we show default refs if and only if no other refs were given. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes.h')
-rw-r--r--notes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/notes.h b/notes.h
index 7ae3eefe06..c716694b9e 100644
--- a/notes.h
+++ b/notes.h
@@ -258,7 +258,7 @@ void format_note(struct notes_tree *t, const unsigned char *object_sha1,
struct string_list;
struct display_notes_opt {
- unsigned int suppress_default_notes:1;
+ int use_default_notes;
struct string_list extra_notes_refs;
};