summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-10-04 04:57:53 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-10-04 04:57:53 +0000
commit65cec58980c279c041788ef30ee8617e63ab5229 (patch)
tree944665968de8bfbd829da99ef1ab54cbd6b02bf4 /toke.c
parent8374d37a1cf6213f384d76ea4f9a4b0e1fe8a871 (diff)
downloadperl-65cec58980c279c041788ef30ee8617e63ab5229.tar.gz
some compatibility macros were busted
p4raw-id: //depot/perl@4298
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/toke.c b/toke.c
index 8777426444..a08673f425 100644
--- a/toke.c
+++ b/toke.c
@@ -3603,7 +3603,8 @@ Perl_yylex(pTHX)
if (PL_oldoldbufptr &&
PL_oldoldbufptr < PL_bufptr &&
- (PL_oldoldbufptr == PL_last_lop || PL_oldoldbufptr == PL_last_uni) &&
+ (PL_oldoldbufptr == PL_last_lop
+ || PL_oldoldbufptr == PL_last_uni) &&
/* NO SKIPSPACE BEFORE HERE! */
(PL_expect == XREF ||
((PL_opargs[PL_last_lop_op] >> OASHIFT)& 7) == OA_FILEREF))
@@ -5441,7 +5442,8 @@ S_checkcomma(pTHX_ register char *s, char *name, char *what)
if (*w)
for (; *w && isSPACE(*w); w++) ;
if (!*w || !strchr(";|})]oaiuw!=", *w)) /* an advisory hack only... */
- Perl_warner(aTHX_ WARN_SYNTAX, "%s (...) interpreted as function",name);
+ Perl_warner(aTHX_ WARN_SYNTAX,
+ "%s (...) interpreted as function",name);
}
}
while (s < PL_bufend && isSPACE(*s))