From 73302179ea4119c4908892c0a3e725ab24a420fa Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Sat, 24 Mar 2018 06:26:30 +0900 Subject: Respect simple_preserve_space for table cells Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893902 --- table.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/table.c b/table.c index 4f193e1..eb5c9ba 100644 --- a/table.c +++ b/table.c @@ -2290,7 +2290,8 @@ skip_space(struct table *t, char *line, struct table_linfo *linfo, } if (s > 0) { #ifdef USE_M17N - if (ctype == PC_KANJI1 && prev_ctype == PC_KANJI1) + if (!SimplePreserveSpace && + ctype == PC_KANJI1 && prev_ctype == PC_KANJI1) skip += s; else #endif -- cgit v1.2.3