summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-10-06 21:23:23 +0000
committerNicholas Clark <nick@ccl4.org>2007-10-06 21:23:23 +0000
commit1a9a51d4aa4d59879a3ad23406cec5aa050b7b1f (patch)
tree74dde97344686ee1d637c8a50426cdfaf6a058c1 /toke.c
parent617299157e790993f5e44437d5a60d79f697645c (diff)
downloadperl-1a9a51d4aa4d59879a3ad23406cec5aa050b7b1f.tar.gz
Remove remaining C<Nullch>s and C<Nullsv>s
p4raw-id: //depot/perl@32054
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 2b47e13d7a..95be7d431d 100644
--- a/toke.c
+++ b/toke.c
@@ -5725,7 +5725,7 @@ Perl_yylex(pTHX)
PL_realtokenstart = -1;
}
while ((s = filter_gets(PL_endwhite, PL_rsfp,
- SvCUR(PL_endwhite))) != Nullch) ;
+ SvCUR(PL_endwhite))) != NULL) ;
}
#endif
PL_rsfp = NULL;
@@ -6699,7 +6699,7 @@ Perl_yylex(pTHX)
CURMAD('Q', PL_thisclose);
NEXTVAL_NEXTTOKE.opval =
(OP*)newSVOP(OP_CONST, 0, PL_lex_stuff);
- PL_lex_stuff = Nullsv;
+ PL_lex_stuff = NULL;
force_next(THING);
s = SKIPSPACE2(s,tmpwhite);