On Fri, Jul 22, 2016 at 12:51:00PM -0700, Junio C Hamano wrote: > Jeff King <peff@xxxxxxxx> writes: > > >> This comes from b22520a3 (grep: allow -E and -n to be turned on by > >> default via configuration, 2011-03-30) back when we didn't have a > >> more generic grep.patternType configuration mechanism in v1.7.5 > >> days, and it probably need to be deprecated to maintain our sanity. > >> ... > > I am not even sure we need to deprecate it. Once it becomes merely a > > historical synonym for "grep.patternType=extended" we can live with it > > indefinitely (and I do not think we need a deprecation period to go > > there; the existing behavior is simply buggy). > > I grossed over an important detail. > > Pretending as if grep.patternType=extended were given when we see > grep.extendedregexp=true and grep.patternType=basic is given when > grep.extendedregexp=false changes the behaviour in a way that can be > seen as the violation of (crazy) expectations t7810 makes. > > Any user who depends on that crazy expectation will be broken by > such a change, even if we do not deprecate and remove the > configuration variable. Ah. Reading 84befcd (grep: add a grep.patternType configuration setting, 2012-08-03) explains the rules, although I agree they are crazy (mostly because "basic" is different "fixed"). So I think there are two crazy things going on: 1. grep.extendedregexp takes precedence over the command-line (or at least "--basic" on the command line). 2. The weird rules in 84befcd, where patternType=fixed has higher precedence than extendedRegexp, but patternType=basic does not. It seems like (1) is a bug, and one we should not have to worry about compatibility while fixing. It stems from not telling the difference between "the user asked for nothing, so we defaulted to basic" and "the user explicitly asked for basic". I think (2) _is_ kind of crazy, and stems from similar confusion. I dunno. Part of me wants to say "I find it highly unlikely that anybody ever actually relied on this, and therefore it is OK to bring it closer to sanity without a deprecation period". But I admit that is just a gut feeling. But even that is a lesser breakage than taking away grep.extendedRegexp entirely. Taking it away breaks anybody who uses it; tweaking (2) only breaks people who set both config variables. But why would anyone do that? -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html