aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-27 18:23:33 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-27 18:23:33 +0000
commit0369c273f23b727b155180671933727d61e2035e (patch)
treea13d11bd93a35ca9ac804766161b4e7e8b205691 /main.c
parent[w3m-dev 02576] (diff)
downloadw3m-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.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/main.c b/main.c
index c243939..1c47c51 100644
--- a/main.c
+++ b/main.c
@@ -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);
}