diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-11-03 11:26:52 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-11-04 22:45:31 -0800 |
commit | 5504e6cfd4036fd9f057da65d41cb31360de5221 (patch) | |
tree | 3130c7a619182026ea90c17464fc4928a7c664d8 /perly.h | |
parent | c25611d58839424e4723cc29fa005047f61b7d2b (diff) | |
download | perl-5504e6cfd4036fd9f057da65d41cb31360de5221.tar.gz |
Fix invalid token warning with PERL_XMLDUMP and label
Under mad builds, commit 5db1eb8 caused this warning:
$ PERL_XMLDUMP=/dev/null ./perl -Ilib -e 'foo:'
Invalid TOKEN object ignored at -e line 1.
Since I don’t understand the mad code so well, the easiest fix is to
revert back to using a PV, as we did before 5db1eb8. To record the
utf8ness, we sneak it behind the trailing null.
Diffstat (limited to 'perly.h')
-rw-r--r-- | perly.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -266,6 +266,6 @@ typedef union YYSTYPE /* Generated from: - * f140f4bf4565d188246d4b85b0baf052281eeed1824a5697fcb811727a34da08 perly.y + * 28c2c7738eefc00762e227af0363c729186c992e9127e0c935684cccbf3a3b4f perly.y * 73288b53f1f6dc0183252a5a8e4f39cfe36e357e77233704fad3021fee88eb5b regen_perly.pl * ex: set ro: */ |