[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.28 and 1.29

version 1.28, 2012/07/09 22:36:34 version 1.29, 2012/07/09 23:53:36
Line 50  static void   post_dl(DECL_ARGS);
Line 50  static void   post_dl(DECL_ARGS);
 static  void      post_enc(DECL_ARGS);  static  void      post_enc(DECL_ARGS);
 static  void      post_eo(DECL_ARGS);  static  void      post_eo(DECL_ARGS);
 static  void      post_fa(DECL_ARGS);  static  void      post_fa(DECL_ARGS);
   static  void      post_fd(DECL_ARGS);
 static  void      post_fl(DECL_ARGS);  static  void      post_fl(DECL_ARGS);
 static  void      post_fn(DECL_ARGS);  static  void      post_fn(DECL_ARGS);
 static  void      post_fo(DECL_ARGS);  static  void      post_fo(DECL_ARGS);
Line 73  static int   pre_dl(DECL_ARGS);
Line 74  static int   pre_dl(DECL_ARGS);
 static  int       pre_enc(DECL_ARGS);  static  int       pre_enc(DECL_ARGS);
 static  int       pre_em(DECL_ARGS);  static  int       pre_em(DECL_ARGS);
 static  int       pre_fa(DECL_ARGS);  static  int       pre_fa(DECL_ARGS);
   static  int       pre_fd(DECL_ARGS);
 static  int       pre_fl(DECL_ARGS);  static  int       pre_fl(DECL_ARGS);
 static  int       pre_fn(DECL_ARGS);  static  int       pre_fn(DECL_ARGS);
 static  int       pre_fo(DECL_ARGS);  static  int       pre_fo(DECL_ARGS);
Line 124  static const struct manact manacts[MDOC_MAX + 1] = {
Line 126  static const struct manact manacts[MDOC_MAX + 1] = {
             "\\fP\nutility exits 0 on success, and >0 if an error occurs."              "\\fP\nutility exits 0 on success, and >0 if an error occurs."
             }, /* Ex */              }, /* Ex */
         { NULL, pre_fa, post_fa, NULL, NULL }, /* Fa */          { NULL, pre_fa, post_fa, NULL, NULL }, /* Fa */
         { NULL, NULL, NULL, NULL, NULL }, /* _Fd */          { NULL, pre_fd, post_fd, NULL, NULL }, /* Fd */
         { NULL, pre_fl, post_fl, NULL, NULL }, /* Fl */          { NULL, pre_fl, post_fl, NULL, NULL }, /* Fl */
         { NULL, pre_fn, post_fn, NULL, NULL }, /* Fn */          { NULL, pre_fn, post_fn, NULL, NULL }, /* Fn */
         { NULL, pre_ft, post_font, NULL, NULL }, /* Ft */          { NULL, pre_ft, post_font, NULL, NULL }, /* Ft */
Line 218  static const struct manact manacts[MDOC_MAX + 1] = {
Line 220  static const struct manact manacts[MDOC_MAX + 1] = {
         { cond_body, pre_enc, post_enc, "{", "}" }, /* Bro */          { cond_body, pre_enc, post_enc, "{", "}" }, /* Bro */
         { NULL, NULL, NULL, NULL, NULL }, /* Brc */          { NULL, NULL, NULL, NULL, NULL }, /* Brc */
         { NULL, NULL, NULL, NULL, NULL }, /* _%C */          { NULL, NULL, NULL, NULL, NULL }, /* _%C */
         { NULL, NULL, NULL, NULL, NULL }, /* _Es */          { NULL, NULL, NULL, NULL, NULL }, /* Es */
         { NULL, NULL, NULL, NULL, NULL }, /* _En */          { NULL, NULL, NULL, NULL, NULL }, /* En */
         { NULL, pre_ux, NULL, "DragonFly", NULL }, /* Dx */          { NULL, pre_ux, NULL, "DragonFly", NULL }, /* Dx */
         { NULL, NULL, NULL, NULL, NULL }, /* _%Q */          { NULL, NULL, NULL, NULL, NULL }, /* _%Q */
         { NULL, pre_br, NULL, NULL, NULL }, /* br */          { NULL, pre_br, NULL, NULL, NULL }, /* br */
Line 788  post_fa(DECL_ARGS)
Line 790  post_fa(DECL_ARGS)
   
         if (NULL != n->next && MDOC_Fa == n->next->tok)          if (NULL != n->next && MDOC_Fa == n->next->tok)
                 print_word(",");                  print_word(",");
   }
   
   static int
   pre_fd(DECL_ARGS)
   {
   
           pre_syn(n);
           font_push('B');
           return(1);
   }
   
   static void
   post_fd(DECL_ARGS)
   {
   
           font_pop();
           outflags |= MMAN_br;
 }  }
   
 static int  static int

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29

CVSweb