[BACK]Return to main.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/main.c between version 1.249 and 1.250

version 1.249, 2020/03/19 12:20:45 version 1.250, 2020/03/28 16:16:42
Line 587 
Line 587 
                 (void)fchdir(startdir);                  (void)fchdir(startdir);
                 close(startdir);                  close(startdir);
         }          }
         if (outst.outtype <= OUTT_UTF8)          term_tag_finish();
                 term_tag_finish();  
         if (outst.outdata != NULL) {          if (outst.outdata != NULL) {
                 switch (outst.outtype) {                  switch (outst.outtype) {
                 case OUTT_HTML:                  case OUTT_HTML:
Line 810 
Line 809 
         } else          } else
                 fd = STDIN_FILENO;                  fd = STDIN_FILENO;
   
         if (outst->outtype <= OUTT_UTF8) {          if (outst->use_pager) {
                 if (outst->use_pager) {                  outst->use_pager = 0;
                         outst->use_pager = 0;                  outst->tag_files = term_tag_init(conf->output.tag);
                         outst->tag_files = term_tag_init(conf->output.tag);          }
                 }          if (outst->had_output && outst->outtype <= OUTT_UTF8) {
                 if (outst->had_output) {                  if (outst->outdata == NULL)
                         if (outst->outdata == NULL)                          outdata_alloc(outst, &conf->output);
                                 outdata_alloc(outst, &conf->output);                  terminal_sepline(outst->outdata);
                         terminal_sepline(outst->outdata);  
                 }  
         }          }
   
         if (resp->form == FORM_SRC)          if (resp->form == FORM_SRC)

Legend:
Removed from v.1.249  
changed lines
  Added in v.1.250