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

version 1.45, 2012/11/19 02:08:33 version 1.48, 2013/05/19 21:07:51
Line 43  static int   cond_body(DECL_ARGS);
Line 43  static int   cond_body(DECL_ARGS);
 static  int       cond_head(DECL_ARGS);  static  int       cond_head(DECL_ARGS);
 static  void      font_push(char);  static  void      font_push(char);
 static  void      font_pop(void);  static  void      font_pop(void);
   static  void      mid_it(void);
 static  void      post__t(DECL_ARGS);  static  void      post__t(DECL_ARGS);
 static  void      post_bd(DECL_ARGS);  static  void      post_bd(DECL_ARGS);
 static  void      post_bf(DECL_ARGS);  static  void      post_bf(DECL_ARGS);
Line 251  static int  outflags;
Line 252  static int  outflags;
 #define MMAN_PP         (1 << 5)  /* reset indentation etc. */  #define MMAN_PP         (1 << 5)  /* reset indentation etc. */
 #define MMAN_Sm         (1 << 6)  /* horizontal spacing mode */  #define MMAN_Sm         (1 << 6)  /* horizontal spacing mode */
 #define MMAN_Bk         (1 << 7)  /* word keep mode */  #define MMAN_Bk         (1 << 7)  /* word keep mode */
 #define MMAN_An_split   (1 << 8)  /* author mode is "split" */  #define MMAN_Bk_susp    (1 << 8)  /* suspend this (after a macro) */
 #define MMAN_An_nosplit (1 << 9)  /* author mode is "nosplit" */  #define MMAN_An_split   (1 << 9)  /* author mode is "split" */
 #define MMAN_PD         (1 << 10) /* inter-paragraph spacing disabled */  #define MMAN_An_nosplit (1 << 10) /* author mode is "nosplit" */
   #define MMAN_PD         (1 << 11) /* inter-paragraph spacing disabled */
   
 #define BL_STACK_MAX    32  #define BL_STACK_MAX    32
   
Line 334  print_word(const char *s)
Line 336  print_word(const char *s)
                  */                   */
                 if (MMAN_spc_force & outflags || '\0' == s[0] ||                  if (MMAN_spc_force & outflags || '\0' == s[0] ||
                     NULL == strchr(".,:;)]?!", s[0]) || '\0' != s[1]) {                      NULL == strchr(".,:;)]?!", s[0]) || '\0' != s[1]) {
                         if (MMAN_Bk & outflags)                          if (MMAN_Bk & outflags &&
                               ! (MMAN_Bk_susp & outflags))
                                 putchar('\\');                                  putchar('\\');
                         putchar(' ');                          putchar(' ');
                         if (TPremain)                          if (TPremain)
Line 351  print_word(const char *s)
Line 354  print_word(const char *s)
                 outflags |= MMAN_spc;                  outflags |= MMAN_spc;
         else          else
                 outflags &= ~MMAN_spc;                  outflags &= ~MMAN_spc;
         outflags &= ~MMAN_spc_force;          outflags &= ~(MMAN_spc_force | MMAN_Bk_susp);
   
         for ( ; *s; s++) {          for ( ; *s; s++) {
                 switch (*s) {                  switch (*s) {
Line 391  print_block(const char *s, int newflags)
Line 394  print_block(const char *s, int newflags)
                         print_line(".PD", 0);                          print_line(".PD", 0);
                         outflags &= ~MMAN_PD;                          outflags &= ~MMAN_PD;
                 }                  }
         } else if (! (MMAN_PD & outflags)) {          } else if (! (MMAN_PD & outflags))
                 print_line(".PD 0", 0);                  print_line(".PD 0", MMAN_PD);
                 outflags |= MMAN_PD;  
         }  
         outflags |= MMAN_nl;          outflags |= MMAN_nl;
         print_word(s);          print_word(s);
         outflags |= newflags;          outflags |= MMAN_Bk_susp | newflags;
 }  }
   
 static void  static void
Line 407  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 426  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 440  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;
 }  }
   
   /*
    * Set up the indentation for a list item; used from pre_it().
    */
 void  void
 print_width(const char *v, const struct mdoc_node *child, size_t defsz)  print_width(const char *v, const struct mdoc_node *child, size_t defsz)
 {  {
Line 470  print_width(const char *v, const struct mdoc_node *chi
Line 478  print_width(const char *v, const struct mdoc_node *chi
         chsz = (NULL != child && MDOC_TEXT == child->type) ?          chsz = (NULL != child && MDOC_TEXT == child->type) ?
                         strlen(child->string) : 0;                          strlen(child->string) : 0;
   
         /*          /* Maybe we are inside an enclosing list? */
          * If we are inside an enclosing list,          mid_it();
          * preserve its indentation.  
          */  
         if (Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {  
                 print_line(".RS", 0);  
                 snprintf(buf, sizeof(buf), "%ldn",  
                                 Bl_stack[Bl_stack_len - 1]);  
                 print_word(buf);  
         }  
   
         /*          /*
          * Save our own indentation,           * Save our own indentation,
Line 556  print_node(DECL_ARGS)
Line 556  print_node(DECL_ARGS)
         const struct mdoc_node  *prev, *sub;          const struct mdoc_node  *prev, *sub;
         const struct manact     *act;          const struct manact     *act;
         int                      cond, do_sub;          int                      cond, do_sub;
   
         /*          /*
          * Break the line if we were parsed subsequent the current node.           * Break the line if we were parsed subsequent the current node.
          * This makes the page structure be more consistent.           * This makes the page structure be more consistent.
Line 706  static int
Line 706  static int
 pre_sect(DECL_ARGS)  pre_sect(DECL_ARGS)
 {  {
   
         if (MDOC_HEAD != n->type)          switch (n->type) {
                 return(1);          case (MDOC_HEAD):
         outflags |= MMAN_sp;                  outflags |= MMAN_sp;
         print_block(manacts[n->tok].prefix, 0);                  print_block(manacts[n->tok].prefix, 0);
         print_word("");                  print_word("");
         putchar('\"');                  putchar('\"');
         outflags &= ~MMAN_spc;                  outflags &= ~MMAN_spc;
                   break;
           case (MDOC_BODY):
                   if (MDOC_Sh == n->tok) {
                           if (MDOC_SYNPRETTY & n->flags)
                                   outflags |= MMAN_Bk;
                           else
                                   outflags &= ~MMAN_Bk;
                   }
                   break;
           default:
                   break;
           }
         return(1);          return(1);
 }  }
   
Line 817  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", 0);  
         print_offs(n->norm->Bd.offs);          print_offs(n->norm->Bd.offs);
         outflags |= MMAN_nl;  
         return(1);          return(1);
 }  }
   
 static void  static void
 post_bd(DECL_ARGS)  post_bd(DECL_ARGS)
 {  {
         char             buf[24];  
   
         /* Close out this display. */          /* Close out this display. */
         print_line(".RE", MMAN_nl);          print_line(".RE", MMAN_nl);
Line 834  post_bd(DECL_ARGS)
Line 843  post_bd(DECL_ARGS)
             DISP_literal  == n->norm->Bd.type)              DISP_literal  == n->norm->Bd.type)
                 print_line(".fi", MMAN_nl);                  print_line(".fi", MMAN_nl);
   
         /*          /* Maybe we are inside an enclosing list? */
          * If we are inside an enclosing list and the current          if (NULL != n->parent->next)
          * list item is not yet finished, restore the correct                  mid_it();
          * indentation for what remains of that item.  
          */  
         if (NULL != n->parent->next &&  
             Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {  
                 print_line(".RS", 0);  
                 snprintf(buf, sizeof(buf), "%ldn",  
                                 Bl_stack[Bl_stack_len - 1]);  
                 print_word(buf);  
                 /* Remeber to close out this .RS block later. */  
                 Bl_stack_post[Bl_stack_len - 1] = 1;  
         }  
 }  }
   
 static int  static int
Line 946  post_bl(DECL_ARGS)
Line 944  post_bl(DECL_ARGS)
         }          }
         outflags |= MMAN_PP | MMAN_nl;          outflags |= MMAN_PP | MMAN_nl;
         outflags &= ~(MMAN_sp | MMAN_br);          outflags &= ~(MMAN_sp | MMAN_br);
   
           /* Maybe we are inside an enclosing list? */
           if (NULL != n->parent->next)
                   mid_it();
   
 }  }
   
 static int  static int
Line 980  static int
Line 983  static int
 pre_dl(DECL_ARGS)  pre_dl(DECL_ARGS)
 {  {
   
         print_line(".RS 6n", MMAN_nl);          print_offs("6n");
         return(1);          return(1);
 }  }
   
Line 989  post_dl(DECL_ARGS)
Line 992  post_dl(DECL_ARGS)
 {  {
   
         print_line(".RE", MMAN_nl);          print_line(".RE", MMAN_nl);
   
           /* Maybe we are inside an enclosing list? */
           if (NULL != n->parent->next)
                   mid_it();
 }  }
   
 static int  static int
Line 1251  pre_it(DECL_ARGS)
Line 1258  pre_it(DECL_ARGS)
         return(1);          return(1);
 }  }
   
   /*
    * This function is called after closing out an indented block.
    * If we are inside an enclosing list, restore its indentation.
    */
 static void  static void
   mid_it(void)
   {
           char             buf[24];
   
           /* Nothing to do outside a list. */
           if (0 == Bl_stack_len || 0 == Bl_stack[Bl_stack_len - 1])
                   return;
   
           /* The indentation has already been set up. */
           if (Bl_stack_post[Bl_stack_len - 1])
                   return;
   
           /* Restore the indentation of the enclosing list. */
           print_line(".RS", MMAN_Bk_susp);
           snprintf(buf, sizeof(buf), "%ldn", Bl_stack[Bl_stack_len - 1]);
           print_word(buf);
   
           /* Remeber to close out this .RS block later. */
           Bl_stack_post[Bl_stack_len - 1] = 1;
   }
   
   static void
 post_it(DECL_ARGS)  post_it(DECL_ARGS)
 {  {
         const struct mdoc_node *bln;          const struct mdoc_node *bln;
Line 1290  post_it(DECL_ARGS)
Line 1323  post_it(DECL_ARGS)
   
                         /*                          /*
                          * Our indentation had to be restored                           * Our indentation had to be restored
                          * after a child display.                           * after a child display or child list.
                          * Close out that indentation block now.                           * Close out that indentation block now.
                          */                           */
                         if (Bl_stack_post[Bl_stack_len]) {                          if (Bl_stack_post[Bl_stack_len]) {
                                 print_line(".RE", MMAN_nl);                                  print_line(".RE", MMAN_nl);
                                 Bl_stack_post[Bl_stack_len] = 0;                                  Bl_stack_post[Bl_stack_len] = 0;
                         }                          }
   
                         /*  
                          * We are inside an enclosing list.  
                          * Restore the indentation of that list.  
                          */  
                         if (Bl_stack_len && Bl_stack[Bl_stack_len - 1])  
                                 print_line(".RE", MMAN_nl);  
                         break;                          break;
                 case (LIST_column):                  case (LIST_column):
                         if (NULL != n->next) {                          if (NULL != n->next) {

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

CVSweb