@@ -1,3 +1,10 @@
|
||||
2001-12-25 Fumitoshi UKAI <ukai@debian.or.jp>
|
||||
|
||||
* [w3m-dev 02719] (based on [w3m-dev 02708] comments)
|
||||
* resize_hook: set resized flag only
|
||||
* main.c (MAIN): in key input loop, process resize
|
||||
when resized flag is set
|
||||
|
||||
2001-12-24 Fumitoshi UKAI <ukai@debian.or.jp>
|
||||
|
||||
* [w3m-dev 02702] fix problem with emacs-w3m in [w3m-dev 02699]
|
||||
@@ -1463,4 +1470,4 @@
|
||||
* release-0-2-1
|
||||
* import w3m-0.2.1
|
||||
|
||||
$Id: ChangeLog,v 1.164 2001/12/23 16:30:10 ukai Exp $
|
||||
$Id: ChangeLog,v 1.165 2001/12/25 09:08:58 ukai Exp $
|
||||
|
||||
24
main.c
24
main.c
@@ -1,4 +1,4 @@
|
||||
/* $Id: main.c,v 1.43 2001/12/23 16:30:10 ukai Exp $ */
|
||||
/* $Id: main.c,v 1.44 2001/12/25 09:08:58 ukai Exp $ */
|
||||
#define MAINPROGRAM
|
||||
#include "fm.h"
|
||||
#include <signal.h>
|
||||
@@ -45,6 +45,10 @@ static Event alarm_event;
|
||||
static MySignalHandler SigAlarm(SIGNAL_ARG);
|
||||
#endif
|
||||
|
||||
#ifdef SIGWINCH
|
||||
static int resized = 0;
|
||||
#endif
|
||||
|
||||
#ifdef USE_MARK
|
||||
static char *MarkString = NULL;
|
||||
#endif
|
||||
@@ -896,9 +900,7 @@ MAIN(int argc, char **argv, char **envp)
|
||||
setlinescols();
|
||||
setupscreen();
|
||||
#endif /* not SIGWINCH */
|
||||
#ifdef SIGCHLD
|
||||
signal(SIGCHLD, sig_chld);
|
||||
#endif
|
||||
|
||||
Currentbuf = Firstbuf;
|
||||
displayBuffer(Currentbuf, B_NORMAL);
|
||||
if (line_str) {
|
||||
@@ -937,6 +939,15 @@ MAIN(int argc, char **argv, char **envp)
|
||||
signal(SIGALRM, SigAlarm);
|
||||
alarm(alarm_sec);
|
||||
}
|
||||
#endif
|
||||
#ifdef SIGWINCH
|
||||
if (resized) {
|
||||
resized = 0;
|
||||
setlinescols();
|
||||
setupscreen();
|
||||
if (Currentbuf)
|
||||
displayBuffer(Currentbuf, B_FORCE_REDRAW);
|
||||
}
|
||||
#endif
|
||||
c = getch();
|
||||
#ifdef USE_ALARM
|
||||
@@ -1166,10 +1177,7 @@ intTrap(SIGNAL_ARG)
|
||||
MySignalHandler
|
||||
resize_hook(SIGNAL_ARG)
|
||||
{
|
||||
setlinescols();
|
||||
setupscreen();
|
||||
if (Currentbuf)
|
||||
displayBuffer(Currentbuf, B_FORCE_REDRAW);
|
||||
resized = 1;
|
||||
signal(SIGWINCH, resize_hook);
|
||||
SIGNAL_RETURN;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user