diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-26 11:19:47 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-26 11:19:47 +0000 |
commit | d36f947bfe6ac940359a4575e9b56e32d7311002 (patch) | |
tree | 7582639884b833201ae5cd6ddb616a0f2610dbff /fm.h | |
parent | [w3m-dev-en 00783] hsaka@mth.biglobe.ne.jp (Hironori SAKAMOTO) (diff) | |
download | w3m-d36f947bfe6ac940359a4575e9b56e32d7311002.tar.gz w3m-d36f947bfe6ac940359a4575e9b56e32d7311002.zip |
[w3m-dev-en 00788]
* fm.h (displayImage): FALSE ifndef USE_IMAGE
* rc.c (displayImage): display_image even if USE_IMAGE undefined
(sync_with_options): display_image is forced to be FALSE
ifndef USE_IMAGE
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'fm.h')
-rw-r--r-- | fm.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: fm.h,v 1.65 2002/10/26 08:10:43 ukai Exp $ */ +/* $Id: fm.h,v 1.66 2002/10/26 11:19:47 ukai Exp $ */ /* * w3m: WWW wo Miru utility * @@ -828,6 +828,8 @@ global int displayImage init(TRUE); global int autoImage init(TRUE); global int useExtImageViewer init(TRUE); global int maxLoadImage init(4); +#else +global int displayImage init(FALSE); /* XXX: emacs-w3m use display_image=off */ #endif global char *Editor init(DEF_EDITOR); #ifdef USE_W3MMAILER |