diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-30 15:46:27 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-30 15:46:27 +0000 |
commit | f585f05db2776c15e8f46ea424a2f3e1b8b05c4a (patch) | |
tree | f4dc0e722a570293cab111bb921fbd28c1297c03 /file.c | |
parent | [w3m-dev 03362] Re: support for http://user:pass@www.url.com (diff) | |
download | w3m-f585f05db2776c15e8f46ea424a2f3e1b8b05c4a.tar.gz w3m-f585f05db2776c15e8f46ea424a2f3e1b8b05c4a.zip |
[w3m-dev 03363] refresh download
* file.c (HTMLtagproc1): alarm is implicit once
* fm.h (AL_IMPLICIT_ONCE): added
* main.c (searchKeyData): reset CurrentKeyData, CurrentCmdData
(SigAlarm): CurrentCmdData is saved to data
message displayed on AL_EXPLICIT
clear alarm when AL_IMPLICIT_ONCE
(setAlarmEvent): AL_IMPLICIT_ONCE
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.107 2002/10/30 15:39:41 ukai Exp $ */ +/* $Id: file.c,v 1.108 2002/10/30 15:46:28 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include "myctype.h" @@ -4602,7 +4602,7 @@ HTMLtagproc1(struct parsed_tag *tag, struct html_feed_environ *h_env) #ifdef USE_ALARM else if (!is_redisplay && refresh_interval > 0 && MetaRefresh && !((obuf->flag & RB_NOFRAMES) && RenderFrame)) { - setAlarmEvent(refresh_interval, AL_IMPLICIT, + setAlarmEvent(refresh_interval, AL_IMPLICIT_ONCE, FUNCNAME_gorURL, s_tmp->ptr); } #endif |