]> git.cameronkatri.com Git - mandoc.git/blobdiff - tbl_opts.c
Now that markdown output is tested for almost everything, test all
[mandoc.git] / tbl_opts.c
index 222c6e86f0b38f17c1613e972ad2f2f682318ec1..f2f5942ae64c3e064253c8bd6a687cc01979fedc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: tbl_opts.c,v 1.19 2015/01/28 15:03:45 schwarze Exp $ */
+/*     $Id: tbl_opts.c,v 1.21 2015/09/26 00:54:04 schwarze Exp $ */
 /*
  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -80,7 +80,8 @@ arg(struct tbl_node *tbl, int ln, const char *p, int *pos, int key)
 
        switch (key) {
        case KEY_DELIM:
-               mandoc_msg(MANDOCERR_TBLEQN, tbl->parse, ln, *pos, NULL);
+               mandoc_vmsg(MANDOCERR_TBLOPT_EQN, tbl->parse,
+                   ln, *pos, "%.*s", len, p + *pos);
                want = 2;
                break;
        case KEY_TAB:
@@ -98,7 +99,6 @@ arg(struct tbl_node *tbl, int ln, const char *p, int *pos, int key)
                break;
        default:
                abort();
-               /* NOTREACHED */
        }
 
        if (len == 0)