From fc8b56da0dae8733da2cd4b97b3366cb1bae89b5 Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 29 Nov 2005 20:14:14 +1000 Subject: [PATCH] Remove accidentally included test code for recursive wildcard feature darcs-hash:20051129101414-ac50b-929f0b9928bbed8a485699c66e1b4e3e8cedcfdc.gz --- wildcard.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/wildcard.c b/wildcard.c index 36f86fb69..1421f4410 100644 --- a/wildcard.c +++ b/wildcard.c @@ -79,12 +79,6 @@ static int wildcard_match2( const wchar_t *str, { if( wildcard_match2( str, wc+1, 0 ) ) return 1; - - if( *wc == ANY_STRING_RECURSIVE - && ( wildcard_match2(str+1, wc, 0) || wildcard_match2(str+1, wc+1, 0) ) ) { - return 1; - } - } while( *(str++) != 0 );