ref-filter: factor out the parsing of sorting atoms
commit29ef53cd361e8751f9f2f40811af0ce863e449b6
authorJeff King <peff@peff.net>
Thu, 13 Jul 2017 15:02:58 +0000 (13 11:02 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 13 Jul 2017 19:42:51 +0000 (13 12:42 -0700)
treef643af96af8483c0a6cc76f314e04c22334b078c
parentaa8a5d144da4e4ec43580831ff4a741538d21db4
ref-filter: factor out the parsing of sorting atoms

We parse sort strings as single formatting atoms, and just
build on parse_ref_filter_atom(). Let's pull this idea into
its own function, since it's about to get a little more
complex. As a bonus, we can give the function a slightly
more natural interface, since our single atoms are in their
own strings.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ref-filter.c