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

Diff for /src/usr.bin/mandoc/roff.c between version 1.133 and 1.134

version 1.133, 2015/02/17 17:16:12 version 1.134, 2015/02/17 17:55:12
Line 2335 
Line 2335 
                 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.133  
changed lines
  Added in v.1.134