diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-01-03 18:54:22 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-01-03 18:54:22 +0000 |
commit | 9a3fb6522b161a2f761167a3e37e9407a2011a9e (patch) | |
tree | ca11d3e7ff72f644b2538c24754948ca5c0ac42b /toke.c | |
parent | ef8eacb8aa7b0a6c0b0ace784386130fa2680a56 (diff) | |
download | perl-9a3fb6522b161a2f761167a3e37e9407a2011a9e.tar.gz |
D'oh! Spurious aTHX_. Here was I thinking that my test build was
threaded, but "oh no it isn't!" :-(
p4raw-id: //depot/perl@23733
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2597,7 +2597,7 @@ Perl_yylex(pTHX) /* The count here deliberately includes the NUL that terminates the C string constant. This embeds the opening NUL into the string. */ - sv_catpvn(aTHX_ PL_linestr, "our @F=split(q", 15); + sv_catpvn(PL_linestr, "our @F=split(q", 15); s = PL_splitstr; do { /* Need to \ \s */ |