diff options
author | Ito Hiroyuki <ZXB01226@nifty.com> | 2010-07-25 09:55:05 +0000 |
---|---|---|
committer | Ito Hiroyuki <ZXB01226@nifty.com> | 2010-07-25 09:55:05 +0000 |
commit | e2782c2ae915a60778c3c43804926f1efc92cc6a (patch) | |
tree | d1195dc29ff2c4b4c859634b670b03549c34367b /terms.c | |
parent | [w3m-dev 04326] suppress compile warnings. (diff) | |
download | w3m-e2782c2ae915a60778c3c43804926f1efc92cc6a.tar.gz w3m-e2782c2ae915a60778c3c43804926f1efc92cc6a.zip |
* merge ambiguous width patch
* http://www.j10n.org/files/w3m-cvs-1.914-ambwidth.patch
Diffstat (limited to '')
-rw-r--r-- | terms.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: terms.c,v 1.60 2010/07/19 12:08:41 htrb Exp $ */ +/* $Id: terms.c,v 1.61 2010/07/25 09:55:05 htrb Exp $ */ /* * An original curses library for EUC-kanji by Akinori ITO, December 1989 * revised by Akinori ITO, January 1995 @@ -1201,7 +1201,7 @@ graphend(void) int graph_ok(void) { - if (UseGraphicChar != GRAPHIC_CHAR_ALL) + if (! UseGraphicChar) return 0; return T_as[0] != 0 && T_ae[0] != 0 && T_ac[0] != 0; } |