aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-12-23 14:24:22 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-12-23 14:24:22 +0000
commit0ca52ddb170b5f7825606e533727f1b4f9a44235 (patch)
tree5d3156a6a8b694cf105691e1eae8433cb293e4b2 /main.c
parent[w3m-dev 02696] (diff)
downloadw3m-0ca52ddb170b5f7825606e533727f1b4f9a44235.tar.gz
w3m-0ca52ddb170b5f7825606e533727f1b4f9a44235.zip
[w3m-dev 02699] initialization too late
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r--main.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/main.c b/main.c
index ba2fe33..95e89fa 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.40 2001/12/19 18:16:18 ukai Exp $ */
+/* $Id: main.c,v 1.41 2001/12/23 14:24:22 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -667,6 +667,25 @@ MAIN(int argc, char **argv, char **envp)
if (COLS == 0)
COLS = 80;
}
+
+ SearchHeader = FALSE;
+ DefaultType = NULL;
+#ifdef JP_CHARSET
+ UseContentCharset = TRUE;
+ UseAutoDetect = TRUE;
+#endif
+
+ if (isatty(1)) {
+#ifdef SIGWINCH
+ signal(SIGWINCH, resize_hook);
+#else /* not SIGWINCH */
+ setlinescols();
+ setupscreen();
+#endif /* not SIGWINCH */
+ }
+#ifdef SIGCHLD
+ signal(SIGCHLD, sig_chld);
+#endif
#ifdef USE_BINMODE_STREAM
setmode(fileno(stdout), O_BINARY);
#endif