[BACK]Return to main.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/main.c between version 1.164 and 1.165

version 1.164, 2011/09/17 15:00:51 version 1.165, 2011/10/06 22:29:12
Line 127  main(int argc, char *argv[])
Line 127  main(int argc, char *argv[])
   
         curp.mp = mparse_alloc(type, curp.wlevel, mmsg, &curp);          curp.mp = mparse_alloc(type, curp.wlevel, mmsg, &curp);
   
           /*
            * Conditionally start up the lookaside buffer before parsing.
            */
           if (OUTT_MAN == curp.outtype)
                   mparse_keep(curp.mp);
   
         argc -= optind;          argc -= optind;
         argv += optind;          argv += optind;
   
Line 252  parse(struct curparse *curp, int fd, 
Line 258  parse(struct curparse *curp, int fd, 
                         break;                          break;
                 case (OUTT_MAN):                  case (OUTT_MAN):
                         curp->outmdoc = man_mdoc;                          curp->outmdoc = man_mdoc;
                           curp->outman = man_man;
                         break;                          break;
                 case (OUTT_PDF):                  case (OUTT_PDF):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */

Legend:
Removed from v.1.164  
changed lines
  Added in v.1.165

CVSweb