Re: [PATCH] checkout: refactor of --progress option

2015-10-31 Thread Edmundo Carmona Antoranz
On Sat, Oct 31, 2015 at 11:10 AM, Edmundo Carmona Antoranz wrote: > by the second item on the outer short-circuited if: I meant: ...short-circuited _and operator_, sorry. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to

Re: [PATCH] checkout: refactor of --progress option

2015-10-31 Thread Edmundo Carmona Antoranz
Disregard this patch. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] checkout: refactor of --progress option

2015-10-31 Thread Edmundo Carmona Antoranz
- removed static variable show_progress - processing if progress will be shown or not right after running parse_options() Signed-off-by: Edmundo Carmona Antoranz --- builtin/checkout.c | 32 +++- 1 file changed, 15 insertions(+), 17

Re: [PATCH] checkout: refactor of --progress option

2015-10-31 Thread Edmundo Carmona Antoranz
On Sat, Oct 31, 2015 at 10:57 AM, Edmundo Carmona Antoranz wrote: > + /* > +* Final processing of show_progress > +* Any of these 3 conditions will make progress output be skipped: > +* - selected --quiet > +* - selected --no-progress > +