Re: [PATCH/RFC] Pro-Git thanks, Control-flow bug report
From: Jeff King <hidden>
Date: 2016-06-15 22:51:39
On Mon, Jul 25, 2011 at 09:39:41PM +0200, Steffen Daode Nurpmeso wrote:
@ Jeff King [off-list ref] wrote (2011-07-25 18:25+0200):quoted
Hmm. What's old is new again, I guess. I posted a patch to fix this almost exactly 3 years ago: http://article.gmane.org/gmane.comp.version-control.git/90427Unfortunately your patch from then seems no longer be sufficient (i.e., from my point of view, say), since this is also coloured: ?0%0[steffen@sherwood git.git]$ ./git -c color.ui=auto -c color.pager=false log
Yeah, it only covers the "diff" case. And that is why the special-casing is a bad solution: you have to do it everywhere that you do late pager setup. (Side note: at the time the original patch was written, log actually didn't have this problem; it was introduced much later by 1fda91b). I wouldn't be surprised if there are others. I think my patch also has the problem that: git -c color.ui=auto -c color.pager=false diff --color will not properly override the config. So probably the only sane solution is to push the "do we want color" bit into a function, rather than keeping a static variable, and then call it at the last possible minute. -Peff