diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-10-15 11:12:31 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-10-15 11:12:31 +0000 |
commit | 3cf7b4c446ec2eb4fa0902195a9812fc4f83df28 (patch) | |
tree | 8b05014144619ca2aca2412986c5a06399902cb4 /toke.c | |
parent | 8be5f608f6696ee966fa295d23ecd0c1c2220447 (diff) | |
download | perl-3cf7b4c446ec2eb4fa0902195a9812fc4f83df28.tar.gz |
Fix bug [perl #24212] : improper error recovery in the
tokenizer after an unknown filetest operator.
p4raw-id: //depot/perl@21452
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2878,7 +2878,7 @@ Perl_yylex(pTHX) "### '-%c' looked like a file test but was not\n", tmp); } ); - s -= 2; + s = --PL_bufptr; } } tmp = *s++; |