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

Diff for /mandoc/term.c between version 1.39 and 1.40

version 1.39, 2009/03/04 13:57:35 version 1.40, 2009/03/04 14:13:05
Line 1009  termp_aq_pre(DECL_ARGS)
Line 1009  termp_aq_pre(DECL_ARGS)
   
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return(1);                  return(1);
         word(p, "<");          word(p, "\\(la");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
 }  }
Line 1023  termp_aq_post(DECL_ARGS)
Line 1023  termp_aq_post(DECL_ARGS)
         if (MDOC_BODY != node->type)          if (MDOC_BODY != node->type)
                 return;                  return;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         word(p, ">");          word(p, "\\(ra");
 }  }
   
   

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.40

CVSweb