On Sat, Oct 31, 2015 at 10:57 AM, Edmundo Carmona Antoranz <eantor...@gmail.com> wrote: > + /* > + * Final processing of show_progress > + * Any of these 3 conditions will make progress output be skipped: > + * - selected --quiet > + * - selected --no-progress > + * - didn't select --progress and not working on a terminal > + */ > + opts.show_progress = !opts.quiet && opts.show_progress && > + (opts.show_progress > 0 || isatty(2)); > +
I did a very small adjustment there from what I had sent yesterday. It was (opts.show_progress >= 0 || isatty(2)) It was unnecessary to include the case of a 0 because it was discarded by the second item on the outer short-circuited if: opts_show_progress. Let me know of your feedback and thanks. -- 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