summaryrefslogtreecommitdiffstats
path: root/out.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-08 17:16:48 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-08 17:16:48 +0000
commit41669ffe63fd5c360ab2ee4890112fd7acefdbb0 (patch)
tree01902076849d495293ef6d9915aa9fb4eee5ee79 /out.c
parent29f8344876163462796a63fb0835930cea1b51ce (diff)
downloadmandoc-41669ffe63fd5c360ab2ee4890112fd7acefdbb0.tar.gz
The numerical column type centres on the *last* decimal point.
Diffstat (limited to 'out.c')
-rw-r--r--out.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/out.c b/out.c
index 8cc80e64..5d7ba217 100644
--- a/out.c
+++ b/out.c
@@ -527,7 +527,7 @@ tblcalc_number(struct rofftbl *tbl, struct roffcol *col,
psz = (*tbl->slen)(buf, tbl->arg);
- if (NULL != (cp = strchr(str, tp->decimal))) {
+ if (NULL != (cp = strrchr(str, tp->decimal))) {
buf[1] = '\0';
for (ssz = 0, i = 0; cp != &str[i]; i++) {
buf[0] = str[i];