]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdocterm.c
Removed "regression" for OpenBSD (broken).
[mandoc.git] / mdocterm.c
index c54441e35146f3bac7f140be685bc2dda14990e8..a41747b2c62e568fc092ddae115c0cf5654aaa2e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: mdocterm.c,v 1.39 2009/03/11 00:39:58 kristaps Exp $ */
+/* $Id: mdocterm.c,v 1.40 2009/03/12 06:32:17 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -430,8 +430,8 @@ word(struct termp *p, const char *word)
                return;
        }
 
-       len = strlen(word);
-       assert(len > 0);
+       if (0 == (len = strlen(word)))
+               errx(1, "blank line not in literal context");
 
        if (mdoc_isdelim(word)) {
                if ( ! (p->flags & TERMP_IGNDELIM))