=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/tbl_layout.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/mandoc/tbl_layout.c 2014/03/28 23:25:54 1.13 --- src/usr.bin/mandoc/tbl_layout.c 2014/04/20 16:44:44 1.14 *************** *** 1,4 **** ! /* $Id: tbl_layout.c,v 1.13 2014/03/28 23:25:54 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2012, 2014 Ingo Schwarze --- 1,4 ---- ! /* $Id: tbl_layout.c,v 1.14 2014/04/20 16:44:44 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2012, 2014 Ingo Schwarze *************** *** 51,66 **** { '=', TBL_CELL_DHORIZ } }; ! static int mods(struct tbl_node *, struct tbl_cell *, int, const char *, int *); ! static int cell(struct tbl_node *, struct tbl_row *, int, const char *, int *); static void row(struct tbl_node *, int, const char *, int *); static struct tbl_cell *cell_alloc(struct tbl_node *, struct tbl_row *, enum tbl_cellt, int vert); static int ! mods(struct tbl_node *tbl, struct tbl_cell *cp, int ln, const char *p, int *pos) { char buf[5]; --- 51,67 ---- { '=', TBL_CELL_DHORIZ } }; ! static int mods(struct tbl_node *, struct tbl_cell *, int, const char *, int *); ! static int cell(struct tbl_node *, struct tbl_row *, int, const char *, int *); static void row(struct tbl_node *, int, const char *, int *); static struct tbl_cell *cell_alloc(struct tbl_node *, struct tbl_row *, enum tbl_cellt, int vert); + static int ! mods(struct tbl_node *tbl, struct tbl_cell *cp, int ln, const char *p, int *pos) { char buf[5]; *************** *** 69,103 **** /* Not all types accept modifiers. */ switch (cp->pos) { ! case (TBL_CELL_DOWN): /* FALLTHROUGH */ ! case (TBL_CELL_HORIZ): /* FALLTHROUGH */ ! case (TBL_CELL_DHORIZ): return(1); default: break; } mod: ! /* * XXX: since, at least for now, modifiers are non-conflicting * (are separable by value, regardless of position), we let * modifiers come in any order. The existing tbl doesn't let * this happen. */ switch (p[*pos]) { ! case ('\0'): /* FALLTHROUGH */ ! case (' '): /* FALLTHROUGH */ ! case ('\t'): /* FALLTHROUGH */ ! case (','): /* FALLTHROUGH */ ! case ('.'): /* FALLTHROUGH */ ! case ('|'): return(1); default: break; --- 70,104 ---- /* Not all types accept modifiers. */ switch (cp->pos) { ! case TBL_CELL_DOWN: /* FALLTHROUGH */ ! case TBL_CELL_HORIZ: /* FALLTHROUGH */ ! case TBL_CELL_DHORIZ: return(1); default: break; } mod: ! /* * XXX: since, at least for now, modifiers are non-conflicting * (are separable by value, regardless of position), we let * modifiers come in any order. The existing tbl doesn't let * this happen. */ switch (p[*pos]) { ! case '\0': /* FALLTHROUGH */ ! case ' ': /* FALLTHROUGH */ ! case '\t': /* FALLTHROUGH */ ! case ',': /* FALLTHROUGH */ ! case '.': /* FALLTHROUGH */ ! case '|': return(1); default: break; *************** *** 113,120 **** (*pos)++; goto mod; } ! mandoc_msg(MANDOCERR_TBLLAYOUT, ! tbl->parse, ln, *pos, NULL); return(0); } --- 114,121 ---- (*pos)++; goto mod; } ! mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos, NULL); return(0); } *************** *** 131,138 **** /* No greater than 4 digits. */ if (4 == i) { ! mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos, NULL); return(0); } --- 132,139 ---- /* No greater than 4 digits. */ if (4 == i) { ! mandoc_msg(MANDOCERR_TBLLAYOUT, ! tbl->parse, ln, *pos, NULL); return(0); } *************** *** 141,209 **** goto mod; /* NOTREACHED */ ! } /* TODO: GNU has many more extensions. */ switch (tolower((unsigned char)p[(*pos)++])) { ! case ('z'): cp->flags |= TBL_CELL_WIGN; goto mod; ! case ('u'): cp->flags |= TBL_CELL_UP; goto mod; ! case ('e'): cp->flags |= TBL_CELL_EQUAL; goto mod; ! case ('t'): cp->flags |= TBL_CELL_TALIGN; goto mod; ! case ('d'): cp->flags |= TBL_CELL_BALIGN; goto mod; ! case ('w'): /* XXX for now, ignore minimal column width */ goto mod; ! case ('f'): break; ! case ('r'): /* FALLTHROUGH */ ! case ('b'): /* FALLTHROUGH */ ! case ('i'): (*pos)--; break; default: mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos - 1, NULL); return(0); } switch (tolower((unsigned char)p[(*pos)++])) { ! case ('3'): /* FALLTHROUGH */ ! case ('b'): cp->flags |= TBL_CELL_BOLD; goto mod; ! case ('2'): /* FALLTHROUGH */ ! case ('i'): cp->flags |= TBL_CELL_ITALIC; goto mod; ! case ('1'): /* FALLTHROUGH */ ! case ('r'): goto mod; default: break; } mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos - 1, NULL); return(0); } static int ! cell(struct tbl_node *tbl, struct tbl_row *rp, int ln, const char *p, int *pos) { int vert, i; --- 142,210 ---- goto mod; /* NOTREACHED */ ! } /* TODO: GNU has many more extensions. */ switch (tolower((unsigned char)p[(*pos)++])) { ! case 'z': cp->flags |= TBL_CELL_WIGN; goto mod; ! case 'u': cp->flags |= TBL_CELL_UP; goto mod; ! case 'e': cp->flags |= TBL_CELL_EQUAL; goto mod; ! case 't': cp->flags |= TBL_CELL_TALIGN; goto mod; ! case 'd': cp->flags |= TBL_CELL_BALIGN; goto mod; ! case 'w': /* XXX for now, ignore minimal column width */ goto mod; ! case 'f': break; ! case 'r': /* FALLTHROUGH */ ! case 'b': /* FALLTHROUGH */ ! case 'i': (*pos)--; break; default: mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos - 1, NULL); return(0); } switch (tolower((unsigned char)p[(*pos)++])) { ! case '3': /* FALLTHROUGH */ ! case 'b': cp->flags |= TBL_CELL_BOLD; goto mod; ! case '2': /* FALLTHROUGH */ ! case 'i': cp->flags |= TBL_CELL_ITALIC; goto mod; ! case '1': /* FALLTHROUGH */ ! case 'r': goto mod; default: break; } mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos - 1, NULL); return(0); } static int ! cell(struct tbl_node *tbl, struct tbl_row *rp, int ln, const char *p, int *pos) { int vert, i; *************** *** 230,237 **** break; if (KEYS_MAX == i) { ! mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos, NULL); return(0); } --- 231,238 ---- break; if (KEYS_MAX == i) { ! mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos, NULL); return(0); } *************** *** 248,261 **** if (TBL_CELL_SPAN == c) { if (NULL == rp->first) { mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos, NULL); return(0); } else if (rp->last) switch (rp->last->pos) { ! case (TBL_CELL_HORIZ): ! case (TBL_CELL_DHORIZ): ! mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos, NULL); return(0); default: break; --- 249,263 ---- if (TBL_CELL_SPAN == c) { if (NULL == rp->first) { mandoc_msg(MANDOCERR_TBLLAYOUT, tbl->parse, ! ln, *pos, NULL); return(0); } else if (rp->last) switch (rp->last->pos) { ! case TBL_CELL_HORIZ: ! /* FALLTHROUGH */ ! case TBL_CELL_DHORIZ: ! mandoc_msg(MANDOCERR_TBLLAYOUT, ! tbl->parse, ln, *pos, NULL); return(0); default: break; *************** *** 286,292 **** return(mods(tbl, cell_alloc(tbl, rp, c, vert), ln, p, pos)); } - static void row(struct tbl_node *tbl, int ln, const char *p, int *pos) { --- 288,293 ---- *************** *** 317,325 **** if ('.' == p[*pos]) { tbl->part = TBL_PART_DATA; ! if (NULL == tbl->first_row) ! mandoc_msg(MANDOCERR_TBLNOLAYOUT, tbl->parse, ! ln, *pos, NULL); (*pos)++; return; } --- 318,326 ---- if ('.' == p[*pos]) { tbl->part = TBL_PART_DATA; ! if (NULL == tbl->first_row) ! mandoc_msg(MANDOCERR_TBLNOLAYOUT, ! tbl->parse, ln, *pos, NULL); (*pos)++; return; }