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

Diff for /mandoc/Attic/validate.c between version 1.91 and 1.93

version 1.91, 2009/03/21 13:47:02 version 1.93, 2009/03/23 14:22:11
Line 23 
Line 23 
 #include <stdarg.h>  #include <stdarg.h>
 #include <stdlib.h>  #include <stdlib.h>
   
 #include "private.h"  #include "libmdoc.h"
   
 /* FIXME: .Bl -diag can't have non-text children in HEAD. */  /* FIXME: .Bl -diag can't have non-text children in HEAD. */
 /* TODO: ignoring Pp (it's superfluous in some invocations). */  /* TODO: ignoring Pp (it's superfluous in some invocations). */
Line 839  pre_bl(PRE_ARGS)
Line 839  pre_bl(PRE_ARGS)
         case (MDOC_Tag):          case (MDOC_Tag):
                 if (-1 != width)                  if (-1 != width)
                         break;                          break;
                 return(mdoc_nerr(mdoc, n, "missing %s argument",                  return(mdoc_nwarn(mdoc, n, WARN_SYNTAX,
                                   "suggest %s argument",
                                 mdoc_argnames[MDOC_Width]));                                  mdoc_argnames[MDOC_Width]));
         default:          default:
                 break;                  break;

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.93

CVSweb