diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-05-25 21:19:38 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-05-25 21:19:38 +0000 |
commit | 97fcbf9696d4cdc3d47f383b99d9840ccb39c616 (patch) | |
tree | db7f5a92355aa3402f174a0065ca2542147c15ee /toke.c | |
parent | ae77835f9b08444f73b593d4cdc0758132dbbf00 (diff) | |
download | perl-97fcbf9696d4cdc3d47f383b99d9840ccb39c616.tar.gz |
Fix up integration 5.003->5.004.
p4raw-id: //depot/perl@19
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3123,7 +3123,7 @@ yylex() in_my = TRUE; s = skipspace(s); if (isIDFIRST(*s)) { - s = scan_word(s, tokenbuf, TRUE, &len); + s = scan_word(s, tokenbuf, sizeof tokenbuf, TRUE, &len); in_my_stash = gv_stashpv(tokenbuf, FALSE); if (!in_my_stash) { char tmpbuf[1024]; |