diff options
author | Father Chrysostomos <sprout@cpan.org> | 2015-02-07 10:06:39 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2015-02-07 10:06:45 -0800 |
commit | 29fa3ed31f733f1b58e89e560fb052897bccefde (patch) | |
tree | e9cfe7f34eb1270074e2c9887e283206c3f29130 /perly.y | |
parent | 3c47da3c2ebf51f08bb927dfa456939cc6c8c30f (diff) | |
download | perl-29fa3ed31f733f1b58e89e560fb052897bccefde.tar.gz |
perly.y: Remove types for '$' and '*'
These two tokens never use their value, and the value is not even set
in toke.c, which means it will contain a junk value from some previous
token. Removing the types prevents that junk value from being acci-
dentally used.
Diffstat (limited to 'perly.y')
-rw-r--r-- | perly.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ %token <ival> GRAMPROG GRAMEXPR GRAMBLOCK GRAMBARESTMT GRAMFULLSTMT GRAMSTMTSEQ -%token <ival> '{' '}' '[' ']' '-' '+' '$' '@' '%' '*' '&' ';' '=' '.' +%token <ival> '{' '}' '[' ']' '-' '+' '@' '%' '&' ';' '=' '.' %token <opval> WORD METHOD FUNCMETH THING PMFUNC PRIVATEREF QWLIST %token <opval> FUNC0OP FUNC0SUB UNIOPSUB LSTOPSUB |