aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-12-25 12:41:08 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-12-25 12:41:08 +0000
commitbc13c3bffe0537f232a3a8a5b05e0ba18b77d7b8 (patch)
treefd2d4bd440cf338a549fb0b91cd2f91589a8a698 /main.c
parent[w3m-dev 02721] (diff)
downloadw3m-bc13c3bffe0537f232a3a8a5b05e0ba18b77d7b8.tar.gz
w3m-bc13c3bffe0537f232a3a8a5b05e0ba18b77d7b8.zip
[w3m-dev 02723] cleanup resizing
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'main.c')
-rw-r--r--main.c62
1 files changed, 29 insertions, 33 deletions
diff --git a/main.c b/main.c
index 2f79a01..918907b 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.45 2001/12/25 09:59:39 ukai Exp $ */
+/* $Id: main.c,v 1.46 2001/12/25 12:41:08 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -46,8 +46,10 @@ static MySignalHandler SigAlarm(SIGNAL_ARG);
#endif
#ifdef SIGWINCH
-static int resized = 0;
-MySignalHandler resize_handler(SIGNAL_ARG);
+static int need_resize_screen = FALSE;
+static MySignalHandler resize_hook(SIGNAL_ARG);
+static MySignalHandler resize_handler(SIGNAL_ARG);
+static void resize_screen(void);
#endif
#ifdef USE_MARK
@@ -673,18 +675,6 @@ MAIN(int argc, char **argv, char **envp)
COLS = 80;
}
- if (isatty(1) && !w3m_dump) {
-#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
@@ -697,7 +687,17 @@ MAIN(int argc, char **argv, char **envp)
CurrentMenuData = NULL;
#endif /* MENU */
fmInit();
+#ifdef SIGWINCH
+ signal(SIGWINCH, resize_hook);
+#else /* not SIGWINCH */
+ setlinescols();
+ setupscreen();
+#endif /* not SIGWINCH */
}
+#ifdef SIGCHLD
+ signal(SIGCHLD, sig_chld);
+#endif
+
orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc);
err_msg = Strnew();
if (load_argc == 0) {
@@ -895,13 +895,6 @@ MAIN(int argc, char **argv, char **envp)
UseAutoDetect = TRUE;
#endif
-#ifdef SIGWINCH
- signal(SIGWINCH, resize_hook);
-#else /* not SIGWINCH */
- setlinescols();
- setupscreen();
-#endif /* not SIGWINCH */
-
Currentbuf = Firstbuf;
displayBuffer(Currentbuf, B_NORMAL);
if (line_str) {
@@ -942,12 +935,9 @@ MAIN(int argc, char **argv, char **envp)
}
#endif
#ifdef SIGWINCH
- if (resized) {
- resized = 0;
- setlinescols();
- setupscreen();
- if (Currentbuf)
- displayBuffer(Currentbuf, B_FORCE_REDRAW);
+ if (need_resize_screen) {
+ need_resize_screen = FALSE;
+ resize_screen();
}
signal(SIGWINCH, resize_handler);
#endif
@@ -1179,23 +1169,29 @@ intTrap(SIGNAL_ARG)
}
#ifdef SIGWINCH
-MySignalHandler
+static MySignalHandler
resize_hook(SIGNAL_ARG)
{
- resized = 1;
+ need_resize_screen = TRUE;
signal(SIGWINCH, resize_hook);
SIGNAL_RETURN;
}
-MySignalHandler
+static MySignalHandler
resize_handler(SIGNAL_ARG)
{
+ resize_screen();
+ signal(SIGWINCH, resize_handler);
+ SIGNAL_RETURN;
+}
+
+static void
+resize_screen(void)
+{
setlinescols();
setupscreen();
if (Currentbuf)
displayBuffer(Currentbuf, B_FORCE_REDRAW);
- signal(SIGWINCH, resize_handler);
- SIGNAL_RETURN;
}
#endif /* SIGWINCH */