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

Diff for /mandoc/Attic/macro.c between version 1.11 and 1.12

version 1.11, 2008/12/29 18:08:44 version 1.12, 2008/12/29 19:25:29
Line 219  append_const(struct mdoc *mdoc, int tok, 
Line 219  append_const(struct mdoc *mdoc, int tok, 
                 mdoc_word_alloc(mdoc, pos, args[1]);                  mdoc_word_alloc(mdoc, pos, args[1]);
                 return(1);                  return(1);
   
           case (MDOC_Nd):
                   if (sz > 0)
                           break;
                   if ( ! mdoc_warn(mdoc, tok, pos, WARN_ARGS_GE1))
                           return(0);
                   break;
   
           case (MDOC_Hf):
                   if (1 == sz)
                           break;
                   return(mdoc_err(mdoc, tok, pos, ERR_ARGS_EQ1));
   
         case (MDOC_Bx):          case (MDOC_Bx):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Bsx):          case (MDOC_Bsx):
Line 306  append_text(struct mdoc *mdoc, int tok, 
Line 318  append_text(struct mdoc *mdoc, int tok, 
         case (MDOC_Dv):          case (MDOC_Dv):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Ic):          case (MDOC_Ic):
                   /* FALLTHROUGH */
           case (MDOC_Sy):
                   /* FALLTHROUGH */
           case (MDOC_Sx):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (MDOC_Va):          case (MDOC_Va):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

CVSweb