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

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

version 1.42, 2010/06/29 14:41:28 version 1.43, 2010/07/03 15:59:05
Line 26 
Line 26 
 #include "mandoc.h"  #include "mandoc.h"
 #include "chars.h"  #include "chars.h"
 #include "out.h"  #include "out.h"
   #include "regs.h"
 #include "term.h"  #include "term.h"
 #include "main.h"  #include "main.h"
   
Line 373 
Line 374 
         size_t           sz;          size_t           sz;
   
         rhs = chars_a2res(p->symtab, word, len, &sz);          rhs = chars_a2res(p->symtab, word, len, &sz);
           if (NULL == rhs) {
                   rhs = roff_getstrn(word, len);
                   if (rhs)
                           sz = strlen(rhs);
           }
         if (rhs)          if (rhs)
                 encode(p, rhs, sz);                  encode(p, rhs, sz);
 }  }

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