From: Gurusamy Sarathy Date: Wed, 28 Oct 1998 23:24:04 +0000 (+0000) Subject: remove doubled hunk from integration X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=854e6445c2d6190b7a3d3208d8ff1250a817e551;p=p5sagit%2Fp5-mst-13.2.git remove doubled hunk from integration p4raw-id: //depot/perl@2119 --- diff --git a/pp.c b/pp.c index d243475..63f20b8 100644 --- a/pp.c +++ b/pp.c @@ -2469,13 +2469,6 @@ PP(pp_quotemeta) *d++ = *s++; } } - else { - while (len--) { - if (!isALNUM(*s)) - *d++ = '\\'; - *d++ = *s++; - } - } *d = '\0'; SvCUR_set(TARG, d - SvPVX(TARG)); (void)SvPOK_only(TARG);