[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.47 and 1.48

version 1.47, 2012/12/31 22:34:48 version 1.48, 2013/05/19 21:07:51
Line 408  print_offs(const char *v)
Line 408  print_offs(const char *v)
         struct roffsu     su;          struct roffsu     su;
         size_t            sz;          size_t            sz;
   
           print_line(".RS", MMAN_Bk_susp);
   
         /* Convert v into a number (of characters). */          /* Convert v into a number (of characters). */
         if (NULL == v || '\0' == *v || 0 == strcmp(v, "left"))          if (NULL == v || '\0' == *v || 0 == strcmp(v, "left"))
                 sz = 0;                  sz = 0;
Line 427  print_offs(const char *v)
Line 429  print_offs(const char *v)
                          * in terms of different units.                           * in terms of different units.
                          */                           */
                         print_word(v);                          print_word(v);
                           outflags |= MMAN_nl;
                         return;                          return;
                 }                  }
         } else          } else
Line 441  print_offs(const char *v)
Line 444  print_offs(const char *v)
   
         snprintf(buf, sizeof(buf), "%ldn", sz);          snprintf(buf, sizeof(buf), "%ldn", sz);
         print_word(buf);          print_word(buf);
           outflags |= MMAN_nl;
 }  }
   
 /*  /*
Line 825  pre_bd(DECL_ARGS)
Line 829  pre_bd(DECL_ARGS)
                 print_line(".nf", 0);                  print_line(".nf", 0);
         if (0 == n->norm->Bd.comp && NULL != n->parent->prev)          if (0 == n->norm->Bd.comp && NULL != n->parent->prev)
                 outflags |= MMAN_sp;                  outflags |= MMAN_sp;
         print_line(".RS", MMAN_Bk_susp);  
         print_offs(n->norm->Bd.offs);          print_offs(n->norm->Bd.offs);
         outflags |= MMAN_nl;  
         return(1);          return(1);
 }  }
   
Line 981  static int
Line 983  static int
 pre_dl(DECL_ARGS)  pre_dl(DECL_ARGS)
 {  {
   
         print_line(".RS", MMAN_Bk_susp);  
         print_offs("6n");          print_offs("6n");
         outflags |= MMAN_nl;  
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.48

CVSweb