aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tbl_layout.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-01-14 22:44:55 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-01-14 22:44:55 +0000
commita75cd602ebfaf527c83177aa31df55e03e2e854e (patch)
treed3e741e23d8fa363adac0a34b4179d47ab270190 /tbl_layout.c
parente54b1e9f0f881374060eef0e4c54bdd192cf7f34 (diff)
downloadmandoc-a75cd602ebfaf527c83177aa31df55e03e2e854e.tar.gz
mandoc-a75cd602ebfaf527c83177aa31df55e03e2e854e.tar.zst
mandoc-a75cd602ebfaf527c83177aa31df55e03e2e854e.zip
simplify by getting rid of ROFF_ERR in tbl(7) parsing; no functional change
Diffstat (limited to 'tbl_layout.c')
-rw-r--r--tbl_layout.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tbl_layout.c b/tbl_layout.c
index 033074af..29a6cee2 100644
--- a/tbl_layout.c
+++ b/tbl_layout.c
@@ -1,4 +1,4 @@
-/* $Id: tbl_layout.c,v 1.30 2014/11/25 21:41:47 schwarze Exp $ */
+/* $Id: tbl_layout.c,v 1.31 2015/01/14 22:44:55 schwarze Exp $ */
/*
* Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2012, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -299,7 +299,7 @@ cell(struct tbl_node *tbl, struct tbl_row *rp,
return(mods(tbl, cell_alloc(tbl, rp, c, vert), ln, p, pos));
}
-int
+void
tbl_layout(struct tbl_node *tbl, int ln, const char *p)
{
struct tbl_row *rp;
@@ -320,18 +320,18 @@ tbl_layout(struct tbl_node *tbl, int ln, const char *p)
rp = NULL;
continue;
case '\0': /* Next row on next input line. */
- return(1);
+ return;
case '.': /* End of layout. */
pos++;
tbl->part = TBL_PART_DATA;
if (tbl->first_row != NULL)
- return(1);
+ return;
mandoc_msg(MANDOCERR_TBLNOLAYOUT,
tbl->parse, ln, pos, NULL);
rp = mandoc_calloc(1, sizeof(*rp));
cell_alloc(tbl, rp, TBL_CELL_LEFT, 0);
tbl->first_row = tbl->last_row = rp;
- return(1);
+ return;
default: /* Cell. */
break;
}
@@ -345,7 +345,7 @@ tbl_layout(struct tbl_node *tbl, int ln, const char *p)
tbl->last_row = rp;
}
if ( ! cell(tbl, rp, ln, p, &pos))
- return(1);
+ return;
}
}