From 1f5b9d128ee296272c97a8e1a191d09c75b10fd1 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Fri, 28 Mar 2014 23:26:25 +0000 Subject: Allow leading and trailing vertical lines, and format them in the same way as groff. While here, do not require whitespace before vertical lines in layout specifications. Issues found by bentley@ in mpv(1). --- mandoc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'mandoc.h') diff --git a/mandoc.h b/mandoc.h index b5df7f95..ff0779ae 100644 --- a/mandoc.h +++ b/mandoc.h @@ -240,6 +240,7 @@ struct tbl_row { struct tbl_row *next; struct tbl_cell *first; struct tbl_cell *last; + int vert; /* trailing vertical line */ }; enum tbl_datt { -- cgit