summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-08-13 16:15:25 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-08-13 16:15:25 +0000
commit72aaf6313309039c851862ad50ee168cb9cdf42b (patch)
tree041155f16315a821decbb5d4a1b0e0ce2ecba628 /toke.c
parent0f15f207c55ce70f46ebbd3be6c3d54763665084 (diff)
downloadperl-72aaf6313309039c851862ad50ee168cb9cdf42b.tar.gz
Threading fixups for Digital UNIX.
p4raw-id: //depot/perl@45
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toke.c b/toke.c
index ca8657b3a7..dd5e2328ba 100644
--- a/toke.c
+++ b/toke.c
@@ -759,7 +759,7 @@ char *start;
register char *d = SvPVX(sv);
bool dorange = FALSE;
I32 len;
- char *leave =
+ char *leaveit =
lex_inpat
? "\\.^$@AGZdDwWsSbB+*?|()-nrtfeaxc0123456789[{]} \t\n\r\f\v#"
: (lex_inwhat & OP_TRANS)
@@ -805,7 +805,7 @@ char *start;
}
if (*s == '\\' && s+1 < send) {
s++;
- if (*s && strchr(leave, *s)) {
+ if (*s && strchr(leaveit, *s)) {
*d++ = '\\';
*d++ = *s++;
continue;