diff options
author | Kristoffer Haugsbakk <code@khaugsbakk.name> | 2023-06-05 12:05:22 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-06 02:35:03 +0200 |
commit | a2e9dbb8849a29d010dceea2d5d1cab62d4dee6d (patch) | |
tree | 137644bcf361ff61cb48852d47c71385726fcf21 /notes.h | |
parent | Git 2.40.1 (diff) | |
download | git-a2e9dbb8849a29d010dceea2d5d1cab62d4dee6d.tar.xz git-a2e9dbb8849a29d010dceea2d5d1cab62d4dee6d.zip |
notes: update documentation for `use_default_notes`
`suppress_default_notes` was renamed to `use_default_notes` in
3a03cf6b1d (notes: refactor display notes default handling,
2011-03-29).
The commit message says that “values less than one [indicates] “not
set” ”, but what was meant was probably “less than zero” (the author of
3a03cf6b1d agrees on this point).
Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | notes.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -286,8 +286,9 @@ void disable_display_notes(struct display_notes_opt *opt, int *show_notes); * If 'opt' is not NULL, then it specifies additional settings for the * displaying: * - * - suppress_default_notes indicates that the notes from - * core.notesRef and notes.displayRef should not be loaded. + * - use_default_notes: less than `0` is "unset", which means that the + * default notes are shown iff no other notes are given. Otherwise, + * treat it like a boolean. * * - extra_notes_refs may contain a list of globs (in the same style * as notes.displayRef) where notes should be loaded from. |