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

Diff for /mandoc/mdoc_man.c between version 1.104 and 1.106

version 1.104, 2017/02/17 19:15:41 version 1.106, 2017/04/14 18:25:04
Line 715  static int
Line 715  static int
 pre__t(DECL_ARGS)  pre__t(DECL_ARGS)
 {  {
   
         if (n->parent && MDOC_Rs == n->parent->tok &&          if (n->parent->tok == MDOC_Rs && n->parent->norm->Rs.quote_T) {
             n->parent->norm->Rs.quote_T) {  
                 print_word("\\(lq");                  print_word("\\(lq");
                 outflags &= ~MMAN_spc;                  outflags &= ~MMAN_spc;
         } else          } else
Line 728  static void
Line 727  static void
 post__t(DECL_ARGS)  post__t(DECL_ARGS)
 {  {
   
         if (n->parent && MDOC_Rs == n->parent->tok &&          if (n->parent->tok  == MDOC_Rs && n->parent->norm->Rs.quote_T) {
             n->parent->norm->Rs.quote_T) {  
                 outflags &= ~MMAN_spc;                  outflags &= ~MMAN_spc;
                 print_word("\\(rq");                  print_word("\\(rq");
         } else          } else
Line 1476  pre_lk(DECL_ARGS)
Line 1474  pre_lk(DECL_ARGS)
                         print_word(descr->string);                          print_word(descr->string);
                         descr = descr->next;                          descr = descr->next;
                 }                  }
                 print_word(":");  
                 font_pop();                  font_pop();
                   print_word(":");
         }          }
   
         font_push('B');          font_push('B');

Legend:
Removed from v.1.104  
changed lines
  Added in v.1.106

CVSweb