[PATCH 1/3] toposort: rename lifo field

2013-06-06 Thread Junio C Hamano
The primary invariant of sort_in_topological_order() is to emit all children before their parent is emitted. When traversing a forked history like this with git log C E: ABC \ DE we ensure that A is emitted after all of B, C, D, and E are done, B has to wait until C

Re: [PATCH 1/3] toposort: rename lifo field

2013-06-06 Thread Eric Sunshine
On Fri, Jun 7, 2013 at 1:11 AM, Junio C Hamano gits...@pobox.com wrote: The primary invariant of sort_in_topological_order() is to emit all children before their parent is emitted. When traversing a forked s/parent is/parents are/ history like this with git log C E: ABC \

Re: [PATCH 1/3] toposort: rename lifo field

2013-06-06 Thread Junio C Hamano
Eric Sunshine sunsh...@sunshineco.com writes: On Fri, Jun 7, 2013 at 1:11 AM, Junio C Hamano gits...@pobox.com wrote: The primary invariant of sort_in_topological_order() is to emit all children before their parent is emitted. When traversing a forked s/parent is/parents are/ Hmm, not