=================================================================== RCS file: /cvs/mandoc/mdoc_validate.c,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- mandoc/mdoc_validate.c 2010/06/27 17:53:27 1.101 +++ mandoc/mdoc_validate.c 2010/06/28 14:39:17 1.102 @@ -1,4 +1,4 @@ -/* $Id: mdoc_validate.c,v 1.101 2010/06/27 17:53:27 schwarze Exp $ */ +/* $Id: mdoc_validate.c,v 1.102 2010/06/28 14:39:17 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -457,6 +457,11 @@ static int check_text(struct mdoc *mdoc, int line, int pos, char *p) { int c; + + /* + * FIXME: we absolutely cannot let \b get through or it will + * destroy some assumptions in terms of format. + */ for ( ; *p; p++, pos++) { if ('\t' == *p) {