diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-06 13:45:47 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-06 13:45:47 +0000 |
commit | 27bc0e15fefdbeee9b80753ad8d540d3a24fedef (patch) | |
tree | dd623a6ce7acdd976a6e2071ffd6c499da201476 /tbl_opts.c | |
parent | 75651ed734f5a30a24bcb1e7847f043a8befb68a (diff) | |
download | mandoc-27bc0e15fefdbeee9b80753ad8d540d3a24fedef.tar.gz |
Remove delims from struct tbl (not used anywhere and never will be).
Diffstat (limited to 'tbl_opts.c')
-rw-r--r-- | tbl_opts.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -102,12 +102,12 @@ arg(struct tbl_node *tbl, int ln, const char *p, int *pos, int key) switch (key) { case (KEY_DELIM): - if ('\0' == (tbl->opts.delims[0] = p[(*pos)++])) { + if ('\0' == p[(*pos)++]) { TBL_MSG(tbl, MANDOCERR_TBL, ln, *pos - 1); return(0); } - if ('\0' == (tbl->opts.delims[1] = p[(*pos)++])) { + if ('\0' == p[(*pos)++]) { TBL_MSG(tbl, MANDOCERR_TBL, ln, *pos - 1); return(0); } |