[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.59 and 1.60

version 1.59, 2014/03/23 11:25:26 version 1.60, 2014/03/30 19:47:48
Line 90  static int   pre_in(DECL_ARGS);
Line 90  static int   pre_in(DECL_ARGS);
 static  int       pre_it(DECL_ARGS);  static  int       pre_it(DECL_ARGS);
 static  int       pre_lk(DECL_ARGS);  static  int       pre_lk(DECL_ARGS);
 static  int       pre_li(DECL_ARGS);  static  int       pre_li(DECL_ARGS);
   static  int       pre_ll(DECL_ARGS);
 static  int       pre_nm(DECL_ARGS);  static  int       pre_nm(DECL_ARGS);
 static  int       pre_no(DECL_ARGS);  static  int       pre_no(DECL_ARGS);
 static  int       pre_ns(DECL_ARGS);  static  int       pre_ns(DECL_ARGS);
Line 241  static const struct manact manacts[MDOC_MAX + 1] = {
Line 242  static const struct manact manacts[MDOC_MAX + 1] = {
         { NULL, pre_sp, post_sp, NULL, NULL }, /* sp */          { NULL, pre_sp, post_sp, NULL, NULL }, /* sp */
         { NULL, NULL, post_percent, NULL, NULL }, /* %U */          { NULL, NULL, post_percent, NULL, NULL }, /* %U */
         { NULL, NULL, NULL, NULL, NULL }, /* Ta */          { NULL, NULL, NULL, NULL, NULL }, /* Ta */
           { NULL, pre_ll, post_sp, NULL, NULL }, /* ll */
         { NULL, NULL, NULL, NULL, NULL }, /* ROOT */          { NULL, NULL, NULL, NULL, NULL }, /* ROOT */
 };  };
   
Line 1403  pre_lk(DECL_ARGS)
Line 1405  pre_lk(DECL_ARGS)
         print_word(link->string);          print_word(link->string);
         font_pop();          font_pop();
         return(0);          return(0);
   }
   
   static int
   pre_ll(DECL_ARGS)
   {
   
           print_line(".ll", 0);
           return(1);
 }  }
   
 static int  static int

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60

CVSweb