[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.103 and 1.104

version 1.103, 2017/02/16 03:00:23 version 1.104, 2017/02/17 19:15:41
Line 717  pre__t(DECL_ARGS)
Line 717  pre__t(DECL_ARGS)
   
         if (n->parent && MDOC_Rs == n->parent->tok &&          if (n->parent && MDOC_Rs == n->parent->tok &&
             n->parent->norm->Rs.quote_T) {              n->parent->norm->Rs.quote_T) {
                 print_word("");                  print_word("\\(lq");
                 putchar('\"');  
                 outflags &= ~MMAN_spc;                  outflags &= ~MMAN_spc;
         } else          } else
                 font_push('I');                  font_push('I');
Line 732  post__t(DECL_ARGS)
Line 731  post__t(DECL_ARGS)
         if (n->parent && MDOC_Rs == n->parent->tok &&          if (n->parent && MDOC_Rs == n->parent->tok &&
             n->parent->norm->Rs.quote_T) {              n->parent->norm->Rs.quote_T) {
                 outflags &= ~MMAN_spc;                  outflags &= ~MMAN_spc;
                 print_word("");                  print_word("\\(rq");
                 putchar('\"');  
         } else          } else
                 font_pop();                  font_pop();
         post_percent(meta, n);          post_percent(meta, n);

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

CVSweb