~ubuntu-branches/ubuntu/lucid/9base/lucid

« back to all changes in this revision

Viewing changes to yacc/yacc.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-08-20 17:34:06 UTC
  • mfrom: (6.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090820173406-xpwqa9ruyevvc0ut
Tags: 1:3-3
* Updating maintainer field.
* Updating vcs fields.
* Updating package to standards version 3.8.3.
* Updatin variables writing in rules to consistent style.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
        EMPTY           = 1,
99
99
        WHOKNOWS        = 0,
100
100
        OK              = 1,
101
 
        NOMORE          = -1000,
 
101
        NOMORE          = -1000
102
102
};
103
103
 
104
104
        /* macros for getting associativity and precedence levels */
1223
1223
        openup(stemc, dflag, vflag, ytab, ytabc);
1224
1224
        fout = dflag?fdefine:ftable;
1225
1225
        if(yyarg){
1226
 
                Bprint(fdefine, "#define\tYYARG\t1\n\n");
 
1226
                Bprint(ftable, "#define\tYYARG\t1\n\n");
1227
1227
        }
1228
1228
        if((fd = mkstemp(ttempname)) >= 0){
1229
1229
                tempname = ttempname;