aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_validate.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-06-28 14:39:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-06-28 14:39:17 +0000
commit73266d633e50a3e89302fd69beaabdfacbe14a5d (patch)
treef136cf51c61453d217570ce08111791770272fb3 /mdoc_validate.c
parentcb73bc471572c6c06fc8831b517b5c4488984b57 (diff)
downloadmandoc-73266d633e50a3e89302fd69beaabdfacbe14a5d.tar.gz
mandoc-73266d633e50a3e89302fd69beaabdfacbe14a5d.tar.zst
mandoc-73266d633e50a3e89302fd69beaabdfacbe14a5d.zip
Notes: this must be done later. \b in the input will cause havoc.
Diffstat (limited to 'mdoc_validate.c')
-rw-r--r--mdoc_validate.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/mdoc_validate.c b/mdoc_validate.c
index e5083570..48b0c40c 100644
--- a/mdoc_validate.c
+++ b/mdoc_validate.c
@@ -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 <kristaps@bsd.lv>
*
@@ -458,6 +458,11 @@ 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) {
if ( ! (MDOC_LITERAL & mdoc->flags))