From 41669ffe63fd5c360ab2ee4890112fd7acefdbb0 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 8 Jan 2011 17:16:48 +0000 Subject: The numerical column type centres on the *last* decimal point. --- out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'out.c') 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]; -- cgit