Re: [PATCH 1/4] magic pathspec: add tentative ":/path/from/top/level" pathspec support
From: Nguyen Thai Ngoc Duy <hidden>
Date: 2016-06-15 22:51:00
On Fri, Apr 8, 2011 at 1:28 AM, Junio C Hamano [off-list ref] wrote:
Nguyen Thai Ngoc Duy [off-list ref] writes:quoted
2011/4/7 Junio C Hamano [off-list ref]:quoted
+ if (('a' <= ch && ch <= 'z') || + ('A' <= ch && ch <= 'Z')) { + strbuf_addf(&sb, "[%c%c]", + tolower(ch), toupper(ch));Nice try. You know you are going to pay a high performance price for that, don't you ;) Maybe also worth mentioning in document that this applies to ASCII charset only (as opposed to Unicode).You know this is a throw-away patch, just to illustrate that some things are doable with a hack to add more code to get_pathspec(), while others would need a bigger restructuring, don't you? Besides, _if_ the user wants to do something costly, as long as the implementation does not harm common cases, it _still_ is better to make the code do the work, no?
I was thinking of the latter rather than the former. And I agree. Just wondering how slow it (fnmatch in general) can be compared to plain prefix. I guess we will know soon if this patch gets in and users start to use it. -- Duy