diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2011-01-04 23:48:39 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2011-01-04 23:48:39 +0000 |
commit | 839bc9f5528d00fb43ad4f4b072f837826692029 (patch) | |
tree | 173a9740c7881f2eca4edc516c598de7a9c9198b /tbl_layout.c | |
parent | ebde5a670e0f6295c268c63c86d4d63212db4a03 (diff) | |
download | mandoc-839bc9f5528d00fb43ad4f4b072f837826692029.tar.gz |
Merge from OpenBSD (similar to my original fix committed on Oct 15, 2010):
For now, parse and ignore minimal column width specifications.
First step to get terminfo(5) to build.
Diffstat (limited to 'tbl_layout.c')
-rw-r--r-- | tbl_layout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tbl_layout.c b/tbl_layout.c index c630e3a8..2fc153ea 100644 --- a/tbl_layout.c +++ b/tbl_layout.c @@ -126,6 +126,8 @@ 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 ('b'): |