diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2018-03-23 21:26:30 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2018-03-23 21:26:30 +0000 |
commit | 73302179ea4119c4908892c0a3e725ab24a420fa (patch) | |
tree | 322b063207bbe8d5a9f500eb6fbcd9940ead15b4 /table.c | |
parent | Update ChangeLog (diff) | |
download | w3m-73302179ea4119c4908892c0a3e725ab24a420fa.tar.gz w3m-73302179ea4119c4908892c0a3e725ab24a420fa.zip |
Respect simple_preserve_space for table cells
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893902
Diffstat (limited to 'table.c')
-rw-r--r-- | table.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |