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

Diff for /mandoc/mdoc_validate.c between version 1.62 and 1.64

version 1.62, 2010/04/03 14:12:48 version 1.64, 2010/04/06 11:28:17
Line 133  static v_post  posts_text1[] = { eerr_eq1, NULL };
Line 133  static v_post  posts_text1[] = { eerr_eq1, NULL };
 static  v_post   posts_vt[] = { post_vt, NULL };  static  v_post   posts_vt[] = { post_vt, NULL };
 static  v_post   posts_wline[] = { bwarn_ge1, herr_eq0, NULL };  static  v_post   posts_wline[] = { bwarn_ge1, herr_eq0, NULL };
 static  v_post   posts_wtext[] = { ewarn_ge1, NULL };  static  v_post   posts_wtext[] = { ewarn_ge1, NULL };
 static  v_post   posts_xr[] = { eerr_ge1, NULL };  static  v_post   posts_xr[] = { ewarn_ge1, NULL };
 static  v_pre    pres_an[] = { pre_an, NULL };  static  v_pre    pres_an[] = { pre_an, NULL };
 static  v_pre    pres_bd[] = { pre_display, pre_bd, NULL };  static  v_pre    pres_bd[] = { pre_display, pre_bd, NULL };
 static  v_pre    pres_bl[] = { pre_bl, NULL };  static  v_pre    pres_bl[] = { pre_bl, NULL };
Line 1103  post_bl_head(POST_ARGS) 
Line 1103  post_bl_head(POST_ARGS) 
                 if (n->args->argv[i].arg == MDOC_Column)                  if (n->args->argv[i].arg == MDOC_Column)
                         break;                          break;
   
         if (i == (int)n->args->argc)          if (i == (int)n->args->argc && n->nchild)
                 return(1);                  return(warn_count(mdoc, "==", 0,
                                   "line arguments", n->nchild));
   
         if (n->args->argv[i].sz && mdoc->last->child)          if (n->args->argv[i].sz && mdoc->last->child)
                 return(mdoc_nerr(mdoc, n, ECOLMIS));                  return(mdoc_nerr(mdoc, n, ECOLMIS));

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.64

CVSweb