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

Diff for /mandoc/mdoc_term.c between version 1.180 and 1.182

version 1.180, 2010/08/07 17:11:17 version 1.182, 2010/08/20 22:51:29
Line 842  termp_it_pre(DECL_ARGS)
Line 842  termp_it_pre(DECL_ARGS)
                 if (MDOC_BODY == n->prev->type)                  if (MDOC_BODY == n->prev->type)
                         p->flags |= TERMP_NOLPAD;                          p->flags |= TERMP_NOLPAD;
   
                   p->flags |= TERMP_IGNDELIM;
   
                 break;                  break;
         case (LIST_diag):          case (LIST_diag):
                 if (MDOC_HEAD == n->type)                  if (MDOC_HEAD == n->type)
Line 1000  termp_it_post(DECL_ARGS)
Line 1002  termp_it_post(DECL_ARGS)
         p->flags &= ~TERMP_TWOSPACE;          p->flags &= ~TERMP_TWOSPACE;
         p->flags &= ~TERMP_NOLPAD;          p->flags &= ~TERMP_NOLPAD;
         p->flags &= ~TERMP_HANG;          p->flags &= ~TERMP_HANG;
   
           /*
            * TERMP_IGNDELIM is also set by `Pf', but it is safe
            * to clear it here because `Pf' cannot contain `It'.
            */
   
           p->flags &= ~TERMP_IGNDELIM;
 }  }
   
   
Line 1804  static void
Line 1813  static void
 termp_pf_post(DECL_ARGS)  termp_pf_post(DECL_ARGS)
 {  {
   
           /*
            * XXX Resetting TERMP_IGNDELIM here is not safe
            * because `Pf' can be used inside `Bl -column'.
            */
         p->flags &= ~TERMP_IGNDELIM;          p->flags &= ~TERMP_IGNDELIM;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
 }  }
Line 2119  termp_li_pre(DECL_ARGS)
Line 2132  termp_li_pre(DECL_ARGS)
 static int  static int
 termp_lk_pre(DECL_ARGS)  termp_lk_pre(DECL_ARGS)
 {  {
         const struct mdoc_node *nn;          const struct mdoc_node *nn, *sv;
   
         term_fontpush(p, TERMFONT_UNDER);          term_fontpush(p, TERMFONT_UNDER);
         nn = n->child;  
   
           nn = sv = n->child;
   
         if (NULL == nn->next)          if (NULL == nn->next)
                 return(1);                  return(1);
   
         term_word(p, nn->string);          for (nn = nn->next; nn; nn = nn->next)
                   term_word(p, nn->string);
   
         term_fontpop(p);          term_fontpop(p);
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         term_word(p, ":");          term_word(p, ":");
   
         term_fontpush(p, TERMFONT_BOLD);          term_fontpush(p, TERMFONT_BOLD);
         for (nn = nn->next; nn; nn = nn->next)          term_word(p, sv->string);
                 term_word(p, nn->string);  
         term_fontpop(p);          term_fontpop(p);
   
         return(0);          return(0);

Legend:
Removed from v.1.180  
changed lines
  Added in v.1.182

CVSweb