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

Diff for /src/usr.bin/mandoc/man.c between version 1.42 and 1.43

version 1.42, 2010/10/15 21:33:47 version 1.43, 2010/10/16 20:49:37
Line 135 
Line 135 
         if (n && MAN_TS == n->tok && MAN_BODY == n->type &&          if (n && MAN_TS == n->tok && MAN_BODY == n->type &&
             strncmp(buf+offs, ".TE", 3)) {              strncmp(buf+offs, ".TE", 3)) {
                 n = n->parent;                  n = n->parent;
                 return(tbl_read(n->data.TS, "<man>", ln, buf+offs,                  if ( ! tbl_read(n->data.TS, "man tbl parser",
                     strlen(buf+offs)) ? 1 : 0);                      ln, buf+offs, strlen(buf+offs)))
                           man_nmsg(m, n, MANDOCERR_TBL);
                   return(1);
         }          }
   
         return(('.' == buf[offs] || '\'' == buf[offs]) ?          return(('.' == buf[offs] || '\'' == buf[offs]) ?

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43