Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: db91d049e0db8300915cd78a2abb8dd9407e90c6
https://github.com/Perl/perl5/commit/db91d049e0db8300915cd78a2abb8dd9407e90c6
Author: Paul "LeoNerd" Evans <[email protected]>
Date: 2022-12-14 (Wed, 14 Dec 2022)
Changed paths:
M perly.act
M perly.h
M perly.tab
M perly.y
M toke.c
Log Message:
-----------
Token type `pval` should be a void * pointer
The `pval` field of the token type union is currently only used in one
place; storing the result of the infix operator plugin. Its use here
stores a structure pointer, not a string. The union should define this
field as a `void *` and not a `char *`.
In addition we should not attempt to debug print it as a string because
its value is not valid as one.