diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-07-16 14:23:54 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-07-16 14:23:54 +0000 |
commit | 33703721eb602593ba89014e5715dc63a8a46105 (patch) | |
tree | 2a7c6b84da3663e9bf1e51ce8d07dad17f3f57a9 /parser.h | |
parent | 503de4705ff6537018ae94e9179e16636748b2a6 (diff) | |
download | perl-33703721eb602593ba89014e5715dc63a8a46105.tar.gz |
change #31615 added the new field in the wrong place
p4raw-link: @31615 on //depot/perl: 503de4705ff6537018ae94e9179e16636748b2a6
p4raw-id: //depot/perl@31616
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,9 +15,9 @@ typedef struct { YYSTYPE val; /* semantic value */ short state; AV *comppad; /* value of PL_comppad when this value was created */ + I32 savestack_ix; /* size of savestack at this state */ #ifdef DEBUGGING const char *name; /* token/rule name for -Dpv */ - I32 savestack_ix; /* size of savestack at this state */ #endif } yy_stack_frame; |