summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-10-28 23:24:04 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-10-28 23:24:04 +0000
commit854e6445c2d6190b7a3d3208d8ff1250a817e551 (patch)
treef20eb7c0e80ae83355c297e30ffe3a450b87af66 /pp.c
parent65c9c81d8dce4e55f5c8527bd4579b49e9272c23 (diff)
downloadperl-854e6445c2d6190b7a3d3208d8ff1250a817e551.tar.gz
remove doubled hunk from integration
p4raw-id: //depot/perl@2119
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/pp.c b/pp.c
index d243475843..63f20b8a0a 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);