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

Diff for /mandoc/roff.c between version 1.261 and 1.262

version 1.261, 2015/02/17 17:16:52 version 1.262, 2015/02/17 18:09:14
Line 2337  roff_it(ROFF_ARGS)
Line 2337  roff_it(ROFF_ARGS)
                 return(ROFF_IGN);                  return(ROFF_IGN);
         }          }
   
         /* Arm the input line trap. */          while (isspace((unsigned char)buf->buf[pos]))
                   pos++;
   
           /*
            * Arm the input line trap.
            * Special-casing "an-trap" is an ugly workaround to cope
            * with DocBook stupidly fiddling with man(7) internals.
            */
   
         roffit_lines = iv;          roffit_lines = iv;
         roffit_macro = mandoc_strdup(buf->buf + pos);          roffit_macro = mandoc_strdup(iv != 1 ||
               strcmp(buf->buf + pos, "an-trap") ?
               buf->buf + pos : "br");
         return(ROFF_IGN);          return(ROFF_IGN);
 }  }
   

Legend:
Removed from v.1.261  
changed lines
  Added in v.1.262

CVSweb