[BACK]Return to mdoc_man.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/mdoc_man.c between version 1.44 and 1.45

version 1.44, 2012/11/18 19:34:12 version 1.45, 2012/11/19 02:14:39
Line 247 
Line 247 
 #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 330 
Line 331 
                  */                   */
                 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 347 
Line 349 
                 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 387 
Line 389 
                         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 471 
Line 471 
          * preserve its indentation.           * preserve its indentation.
          */           */
         if (Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {          if (Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {
                 print_line(".RS", 0);                  print_line(".RS", MMAN_Bk_susp);
                 snprintf(buf, sizeof(buf), "%ldn",                  snprintf(buf, sizeof(buf), "%ldn",
                                 Bl_stack[Bl_stack_len - 1]);                                  Bl_stack[Bl_stack_len - 1]);
                 print_word(buf);                  print_word(buf);
Line 552 
Line 552 
         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 702 
Line 702 
 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 813 
Line 825 
                 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_line(".RS", MMAN_Bk_susp);
         print_offs(n->norm->Bd.offs);          print_offs(n->norm->Bd.offs);
         outflags |= MMAN_nl;          outflags |= MMAN_nl;
         return(1);          return(1);
Line 837 
Line 849 
          */           */
         if (NULL != n->parent->next &&          if (NULL != n->parent->next &&
             Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {              Bl_stack_len && Bl_stack[Bl_stack_len - 1]) {
                 print_line(".RS", 0);                  print_line(".RS", MMAN_Bk_susp);
                 snprintf(buf, sizeof(buf), "%ldn",                  snprintf(buf, sizeof(buf), "%ldn",
                                 Bl_stack[Bl_stack_len - 1]);                                  Bl_stack[Bl_stack_len - 1]);
                 print_word(buf);                  print_word(buf);

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