diff options
| author | Junio C Hamano <gitster@pobox.com> | 2017-07-12 15:18:23 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-07-12 15:18:23 -0700 |
| commit | 768d0fe0dadbffe722fa4b80b2180a4fcaf1c854 (patch) | |
| tree | ac1c34d58d1f8f01ff655e5915fdef074c7d04ac /ref-filter.c | |
| parent | Merge branch 'rs/urlmatch-cleanup' (diff) | |
| parent | ref-filter.c: drop return from void function (diff) | |
| download | git-768d0fe0dadbffe722fa4b80b2180a4fcaf1c854.tar.gz git-768d0fe0dadbffe722fa4b80b2180a4fcaf1c854.zip | |
Merge branch 'kn/ref-filter-branch-list'
The rewrite of "git branch --list" using for-each-ref's internals
that happened in v2.13 regressed its handling of color.branch.local;
this has been fixed.
* kn/ref-filter-branch-list:
ref-filter.c: drop return from void function
branch: set remote color in ref-filter branch immediately
branch: use BRANCH_COLOR_LOCAL in ref-filter format
branch: only perform HEAD check for local branches
Diffstat (limited to 'ref-filter.c')
| -rw-r--r-- | ref-filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ref-filter.c b/ref-filter.c index e0578d8b5a..ae6ecbd1cf 100644 --- a/ref-filter.c +++ b/ref-filter.c @@ -221,7 +221,7 @@ static void objectname_atom_parser(struct used_atom *atom, const char *arg) static void refname_atom_parser(struct used_atom *atom, const char *arg) { - return refname_atom_parser_internal(&atom->u.refname, arg, atom->name); + refname_atom_parser_internal(&atom->u.refname, arg, atom->name); } static align_type parse_align_position(const char *s) |
