aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tbl_layout.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-09-03 00:29:21 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-09-03 00:29:21 +0000
commit19700ec8d05d92a66fbcf8a8040f0b00c7e94de4 (patch)
tree2d77a76aec6a5b13fa521cbcefa705ea43bab697 /tbl_layout.c
parentca69e819a0548e61d559a073c81a8124b5a4bf47 (diff)
downloadmandoc-19700ec8d05d92a66fbcf8a8040f0b00c7e94de4.tar.gz
mandoc-19700ec8d05d92a66fbcf8a8040f0b00c7e94de4.tar.zst
mandoc-19700ec8d05d92a66fbcf8a8040f0b00c7e94de4.zip
Fix handling of font modifiers in tables. Noted by Brad Smith.
Diffstat (limited to 'tbl_layout.c')
-rw-r--r--tbl_layout.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/tbl_layout.c b/tbl_layout.c
index 0aa18dcb..8e033670 100644
--- a/tbl_layout.c
+++ b/tbl_layout.c
@@ -1,4 +1,4 @@
-/* $Id: tbl_layout.c,v 1.20 2011/05/17 13:11:40 kristaps Exp $ */
+/* $Id: tbl_layout.c,v 1.21 2011/09/03 00:29:21 kristaps Exp $ */
/*
* Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -173,6 +173,8 @@ mod:
goto mod;
case ('f'):
break;
+ case ('r'):
+ /* FALLTHROUGH */
case ('b'):
/* FALLTHROUGH */
case ('i'):
@@ -185,12 +187,20 @@ mod:
}
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;
}