aboutsummaryrefslogtreecommitdiffstats
path: root/fm.h
diff options
context:
space:
mode:
authorIto Hiroyuki <ZXB01226@nifty.com>2010-08-04 14:06:35 +0000
committerIto Hiroyuki <ZXB01226@nifty.com>2010-08-04 14:06:35 +0000
commitde4557c096f0ef91763331e8ca3c8fe45b223aca (patch)
treeb1e6346013614fceb733ad4fde3a9cf5edf1a734 /fm.h
parent[w3m-dev 04363] Re: w3m's bugs from bugs.debian.org (diff)
downloadw3m-de4557c096f0ef91763331e8ca3c8fe45b223aca.tar.gz
w3m-de4557c096f0ef91763331e8ca3c8fe45b223aca.zip
fix conditions for UseGraphicChar
Diffstat (limited to '')
-rw-r--r--fm.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/fm.h b/fm.h
index 2dc0762..4e118b3 100644
--- a/fm.h
+++ b/fm.h
@@ -1,4 +1,4 @@
-/* $Id: fm.h,v 1.146 2010/08/03 10:02:16 htrb Exp $ */
+/* $Id: fm.h,v 1.147 2010/08/04 14:06:36 htrb Exp $ */
/*
* w3m: WWW wo Miru utility
*
@@ -1057,7 +1057,10 @@ global char SimplePreserveSpace init(FALSE);
#define wc_Str_conv_strict(x,charset0,charset1) (x)
#endif
global char UseAltEntity init(TRUE);
-global char UseGraphicChar init(FALSE);
+#define GRAPHIC_CHAR_ASCII 2
+#define GRAPHIC_CHAR_DEC 1
+#define GRAPHIC_CHAR_CHARSET 0
+global char UseGraphicChar init(GRAPHIC_CHAR_CHARSET);
extern char *graph_symbol[];
extern char *graph2_symbol[];
extern int symbol_width;