[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.105

version 1.104, 2017/02/17 19:15:41 version 1.105, 2017/03/04 21:41:29
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

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

CVSweb