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

Diff of /bison/src/derives.c

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

revision 1.13.2.4 by akim, Mon Nov 19 09:21:26 2001 UTC revision 1.13.2.5 by akim, Mon Nov 19 09:25:36 2001 UTC
# Line 40  print_derives (void) Line 40  print_derives (void)
40    int i;    int i;
41    short *sp;    short *sp;
42    
43    fputs ("\n\n\nDERIVES\n\n", stderr);    fputs ("DERIVES\n", stderr);
44    
45    for (i = ntokens; i < nsyms; i++)    for (i = ntokens; i < nsyms; i++)
46      {      {
47        fprintf (stderr, "%s derives", tags[i]);        fprintf (stderr, "\t%s derives\n", tags[i]);
48        for (sp = derives[i]; *sp > 0; sp++)        for (sp = derives[i]; *sp > 0; sp++)
49          fprintf (stderr, "  %d", *sp);          fprintf (stderr, "\t\t%d (%s)\n", *sp, tags[*sp]);
       putc ('\n', stderr);  
50      }      }
51    
52    putc ('\n', stderr);    fputs ("\n\n", stderr);
53  }  }
54    
55    

Legend:
Removed from v.1.13.2.4  
changed lines
  Added in v.1.13.2.5

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