projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
combined
(merge:
df0003d
aa34f18
)
integrate cfgperl into mainline
Gurusamy Sarathy [Wed, 28 Oct 1998 21:21:16 +0000 (21:21 +0000)]
p4raw-id: //depot/perl@2113
1
2
pp.c
patch
|
diff1
|
diff2
|
blob
|
history
toke.c
patch
|
diff1
|
diff2
|
blob
|
history
diff --cc
pp.c
index
63f20b8
,
9cd1c55
..
d243475
---
1
/
pp.c
---
2
/
pp.c
+++ b/
pp.c
@@@
-2468,7
-2468,7
+2468,14
@@@
PP(pp_quotemeta
*d++ = '\\';
*d++ = *s++;
}
+ }
++ else {
++ while (len--) {
++ if (!isALNUM(*s))
++ *d++ = '\\';
++ *d++ = *s++;
++ }
+ }
*d = '\0';
SvCUR_set(TARG, d - SvPVX(TARG));
(void)SvPOK_only(TARG);
diff --cc
toke.c
Simple merge