From: Nicholas Clark Date: Thu, 22 Mar 2007 22:21:54 +0000 (+0000) Subject: Can use memEQ instead of strnEQ in CHECK_WORD() X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c3259e746e9a16eaab56dc090af25ee8b1dccf28;p=p5sagit%2Fp5-mst-13.2.git Can use memEQ instead of strnEQ in CHECK_WORD() p4raw-id: //depot/perl@30700 --- diff --git a/regcomp.c b/regcomp.c index 663d288..9733476 100644 --- a/regcomp.c +++ b/regcomp.c @@ -4956,7 +4956,7 @@ S_reg_scan_name(pTHX_ RExC_state_t *pRExC_state, U32 flags) { /* this idea is borrowed from STR_WITH_LEN in handy.h */ #define CHECK_WORD(s,v,l) \ - (((sizeof(s)-1)==(l)) && (strnEQ(start_verb, (s ""), (sizeof(s)-1)))) + (((sizeof(s)-1)==(l)) && (memEQ(start_verb, (s ""), (sizeof(s)-1)))) STATIC regnode * S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth)