Jakub Narebski <jnareb@gmail.com> writes: > + wanted => sub { > + # skip current directory > + return if (m!^/|.|..$!); Huh? (1) Did you mean to say "\." (not any single character but literally dot)? (2) how does the alternatives within m{} construct bind (iow, please be gentle to the readers)? Do you mean return if (/^\/(?:\.|\.\.)$/) in other words, return if (/^\/\.$/ || /^\/\.\.$/) in other words, return if (/^\/\.{1,2}/) ??? - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Fri Sep 15 06:13:04 2006
This archive was generated by hypermail 2.1.8 : 2006-09-15 06:13:45 EST