diff options
author | Ito Hiroyuki <ZXB01226@nifty.com> | 2010-08-04 14:06:35 +0000 |
---|---|---|
committer | Ito Hiroyuki <ZXB01226@nifty.com> | 2010-08-04 14:06:35 +0000 |
commit | de4557c096f0ef91763331e8ca3c8fe45b223aca (patch) | |
tree | b1e6346013614fceb733ad4fde3a9cf5edf1a734 /main.c | |
parent | [w3m-dev 04363] Re: w3m's bugs from bugs.debian.org (diff) | |
download | w3m-de4557c096f0ef91763331e8ca3c8fe45b223aca.tar.gz w3m-de4557c096f0ef91763331e8ca3c8fe45b223aca.zip |
fix conditions for UseGraphicChar
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.266 2010/08/03 10:25:23 htrb Exp $ */ +/* $Id: main.c,v 1.267 2010/08/04 14:06:36 htrb Exp $ */ #define MAINPROGRAM #include "fm.h" #include <signal.h> @@ -240,8 +240,8 @@ fusage(FILE * f, int err) fprintf(f, " -cookie use cookie (-no-cookie: don't use cookie)\n"); #endif /* USE_COOKIE */ - fprintf(f, " -graph use graphic character\n"); - fprintf(f, " -no-graph don't use graphic character\n"); + fprintf(f, " -graph use DEC special graphics for border of table and menu\n"); + fprintf(f, " -no-graph use ACII character for border of table and menu\n"); fprintf(f, " -S squeeze multiple blank lines\n"); fprintf(f, " -W toggle wrap search mode\n"); fprintf(f, " -X don't use termcap init/deinit\n"); @@ -554,9 +554,9 @@ main(int argc, char **argv, char **envp) } #endif else if (!strcmp("-graph", argv[i])) - UseGraphicChar = TRUE; + UseGraphicChar = GRAPHIC_CHAR_DEC; else if (!strcmp("-no-graph", argv[i])) - UseGraphicChar = FALSE; + UseGraphicChar = GRAPHIC_CHAR_ASCII; else if (!strcmp("-T", argv[i])) { if (++i >= argc) usage(); |