aboutsummaryrefslogtreecommitdiffstatshomepage
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
commitaa9ca6960e283b808aecccfb67f2cc730f0e83b8 (patch)
treeac8bf6562fd8bdc81e8361f15567f92a8e6622d9 /out.c
parent74fefd1ac6f4b27426d1a6a6dc64e5c52b84945d (diff)
downloadmandoc-aa9ca6960e283b808aecccfb67f2cc730f0e83b8.tar.gz
mandoc-aa9ca6960e283b808aecccfb67f2cc730f0e83b8.tar.zst
mandoc-aa9ca6960e283b808aecccfb67f2cc730f0e83b8.zip
The numerical column type centres on the *last* decimal point.
Diffstat (limited to 'out.c')
-rw-r--r--out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/out.c b/out.c
index f12a6439..58fdf951 100644
--- a/out.c
+++ b/out.c
@@ -1,4 +1,4 @@
-/* $Id: out.c,v 1.31 2011/01/08 17:00:27 kristaps Exp $ */
+/* $Id: out.c,v 1.32 2011/01/08 17:16:48 kristaps Exp $ */
/*
* Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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];