[BACK]Return to man_term.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/man_term.c between version 1.52 and 1.54

version 1.52, 2009/11/12 05:50:12 version 1.54, 2009/11/12 08:21:05
Line 104  static void    post_RS(DECL_ARGS);
Line 104  static void    post_RS(DECL_ARGS);
 static  void              post_SH(DECL_ARGS);  static  void              post_SH(DECL_ARGS);
 static  void              post_SS(DECL_ARGS);  static  void              post_SS(DECL_ARGS);
 static  void              post_TP(DECL_ARGS);  static  void              post_TP(DECL_ARGS);
 static  void              post_i(DECL_ARGS);  
   
 static  const struct termact termacts[MAN_MAX] = {  static  const struct termact termacts[MAN_MAX] = {
         { pre_br, NULL }, /* br */          { pre_br, NULL }, /* br */
Line 129  static const struct termact termacts[MAN_MAX] = {
Line 128  static const struct termact termacts[MAN_MAX] = {
         { pre_RI, NULL }, /* IR */          { pre_RI, NULL }, /* IR */
         { pre_RI, NULL }, /* RI */          { pre_RI, NULL }, /* RI */
         { NULL, NULL }, /* na */          { NULL, NULL }, /* na */
         { pre_I, post_i }, /* i */          { pre_I, NULL }, /* i */
         { pre_sp, NULL }, /* sp */          { pre_sp, NULL }, /* sp */
         { pre_nf, NULL }, /* nf */          { pre_nf, NULL }, /* nf */
         { pre_fi, NULL }, /* fi */          { pre_fi, NULL }, /* fi */
Line 244  pre_I(DECL_ARGS)
Line 243  pre_I(DECL_ARGS)
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static void  
 post_i(DECL_ARGS)  
 {  
   
         /* FIXME */  
         /*if (n->nchild)  
                 p->under--;*/  
 }  
   
   
 /* ARGSUSED */  
 static int  static int
 pre_fi(DECL_ARGS)  pre_fi(DECL_ARGS)
 {  {
Line 795  post_RS(DECL_ARGS)
Line 783  post_RS(DECL_ARGS)
 static void  static void
 print_man_node(DECL_ARGS)  print_man_node(DECL_ARGS)
 {  {
         int              c, sz;          int              c;
   
         c = 1;          c = 1;
   
Line 805  print_man_node(DECL_ARGS)
Line 793  print_man_node(DECL_ARGS)
                         term_vspace(p);                          term_vspace(p);
                         break;                          break;
                 }                  }
                 /*  
                  * Note!  This is hacky.  Here, we recognise the `\c'  
                  * escape embedded in so many -man pages.  It's supposed  
                  * to remove the subsequent space, so we mark NOSPACE if  
                  * it's encountered in the string.  
                  */  
                 sz = (int)strlen(n->string);  
                 term_word(p, n->string);                  term_word(p, n->string);
                 if (sz >= 2 && n->string[sz - 1] == 'c' &&  
                                 n->string[sz - 2] == '\\')  
                         p->flags |= TERMP_NOSPACE;  
   
                 /* FIXME: this means that macro lines are munged!  */                  /* FIXME: this means that macro lines are munged!  */
   

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.54

CVSweb