diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-10-06 21:23:23 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-10-06 21:23:23 +0000 |
commit | 1a9a51d4aa4d59879a3ad23406cec5aa050b7b1f (patch) | |
tree | 74dde97344686ee1d637c8a50426cdfaf6a058c1 /toke.c | |
parent | 617299157e790993f5e44437d5a60d79f697645c (diff) | |
download | perl-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |