commit db0f4a4cbaad0064bd732e887556e31d5d383d0d
parent bb63805ced4e0055db88d8efd55e9c0dd2ec72a8
Author: ukai <ukai>
Date: Thu, 7 Feb 2002 14:44:47 +0000
[emacs-w3m:02733] for emacs-w3m better rendering with inline image
* main.c (MAIN): activeImage = TRUE when -halfdump & display_image=1
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat:
2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,5 +1,10 @@
2002-02-07 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
+ * [emacs-w3m:02733] for emacs-w3m better rendering with inline image
+ * main.c (MAIN): activeImage = TRUE when -halfdump & display_image=1
+
+2002-02-07 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
+
* [w3m-dev 03006] fix form order in table
* file.c (process_form): static
fix form index order
diff --git a/main.c b/main.c
@@ -733,6 +733,10 @@ MAIN(int argc, char **argv, char **envp)
setupscreen();
#endif /* not SIGWINCH */
}
+#ifdef USE_IMAGE
+ else if (w3m_halfdump && displayImage)
+ activeImage = TRUE;
+#endif
#ifdef SIGCHLD
signal(SIGCHLD, sig_chld);
#endif