/[bison]/bison/src/output.c
ViewVC logotype

Diff of /bison/src/output.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.143 by akim, Mon Apr 8 11:45:59 2002 UTC revision 1.144 by akim, Tue Apr 9 19:19:59 2002 UTC
# Line 417  action_row (state_t *state) Line 417  action_row (state_t *state)
417    
418        /* Do not use any default reduction if there is a shift for        /* Do not use any default reduction if there is a shift for
419           error */           error */
420        if (symbol == error_token_number)        if (symbol == errtoken->number)
421          nodefault = 1;          nodefault = 1;
422      }      }
423    
# Line 614  token_definitions_output (FILE *out) Line 614  token_definitions_output (FILE *out)
614        if (number == SALIAS)        if (number == SALIAS)
615          continue;          continue;
616        /* Skip error token.  */        /* Skip error token.  */
617        if (symbol->number == error_token_number)        if (symbol == errtoken)
618          continue;          continue;
619        if (symbol->tag[0] == '\'')        if (symbol->tag[0] == '\'')
620          continue;               /* skip literal character */          continue;               /* skip literal character */
# Line 1078  prepare (void) Line 1078  prepare (void)
1078    MUSCLE_INSERT_INT ("nsym", nsyms);    MUSCLE_INSERT_INT ("nsym", nsyms);
1079    MUSCLE_INSERT_INT ("debug", debug_flag);    MUSCLE_INSERT_INT ("debug", debug_flag);
1080    MUSCLE_INSERT_INT ("final", final_state);    MUSCLE_INSERT_INT ("final", final_state);
1081    MUSCLE_INSERT_INT ("maxtok", max_user_token_number);    MUSCLE_INSERT_INT ("undef_token_number", undeftoken->number);
1082      MUSCLE_INSERT_INT ("user_token_number_max", max_user_token_number);
1083    MUSCLE_INSERT_INT ("error_verbose", error_verbose);    MUSCLE_INSERT_INT ("error_verbose", error_verbose);
1084    MUSCLE_INSERT_STRING ("prefix", spec_name_prefix ? spec_name_prefix : "yy");    MUSCLE_INSERT_STRING ("prefix", spec_name_prefix ? spec_name_prefix : "yy");
1085    

Legend:
Removed from v.1.143  
changed lines
  Added in v.1.144

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26