=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/Attic/mdoc_action.c,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- src/usr.bin/mandoc/Attic/mdoc_action.c 2010/10/24 18:15:43 1.46 +++ src/usr.bin/mandoc/Attic/mdoc_action.c 2010/10/26 22:48:07 1.47 @@ -1,4 +1,4 @@ -/* $Id: mdoc_action.c,v 1.46 2010/10/24 18:15:43 schwarze Exp $ */ +/* $Id: mdoc_action.c,v 1.47 2010/10/26 22:48:07 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -665,12 +665,8 @@ assert(MDOC_BLOCK == nn->type); nn = nn->head->child; - if (nn == NULL) { - /* No -width for .Bl and first .It is emtpy */ - if ( ! mdoc_nmsg(m, n, MANDOCERR_NOWIDTHARG)) - return(0); + if (nn == NULL) break; - } if (MDOC_TEXT == nn->type) { sz = strlen(nn->string) + 1; @@ -679,8 +675,6 @@ if (0 != (ssz = mdoc_macro2len(nn->tok))) sz = ssz; - else if ( ! mdoc_nmsg(m, n, MANDOCERR_NOWIDTHARG)) - return(0); break; }