diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-27 18:23:33 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-27 18:23:33 +0000 |
commit | 0369c273f23b727b155180671933727d61e2035e (patch) | |
tree | a13d11bd93a35ca9ac804766161b4e7e8b205691 /main.c | |
parent | [w3m-dev 02576] (diff) | |
download | w3m-0369c273f23b727b155180671933727d61e2035e.tar.gz w3m-0369c273f23b727b155180671933727d61e2035e.zip |
[w3m-dev 02578]
From: Fumitoshi UKAI <ukai@debian.or.jp>
<input type="image">
Diffstat (limited to '')
-rw-r--r-- | main.c | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.24 2001/11/27 04:45:28 ukai Exp $ */ +/* $Id: main.c,v 1.25 2001/11/27 18:23:33 ukai Exp $ */ #define MAINPROGRAM #include "fm.h" #include <signal.h> @@ -2362,12 +2362,9 @@ loadLink(char *url, char *target, char *referer, FormList *request) if (do_download) /* download (thus no need to render frame) */ return loadNormalBuf(buf, FALSE); - if (target == NULL || /* no target specified (that means * this - * page is not a frame page) */ - !strcmp(target, "_top") || /* this link is specified to * be - * opened as an indivisual * page */ - !(Currentbuf->bufferprop & BP_FRAME) /* This page is not a * - * * * * * frame page */ + if (target == NULL || /* no target specified (that means this page is not a frame page) */ + !strcmp(target, "_top") || /* this link is specified to be opened as an indivisual * page */ + !(Currentbuf->bufferprop & BP_FRAME) /* This page is not a frame page */ ) { return loadNormalBuf(buf, TRUE); } |