[w3m-dev 03596] LIST

* anchor.c (link_list_panel): check internal
From: Hiroaki Shimotsu <shim@d5.bs1.fc.nec.co.jp>
This commit is contained in:
Fumitoshi UKAI
2002-12-24 17:24:05 +00:00
parent 4ca69fff36
commit b1266c7a32
2 changed files with 13 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: anchor.c,v 1.15 2002/12/16 15:41:27 ukai Exp $ */
/* $Id: anchor.c,v 1.16 2002/12/24 17:24:05 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include "regex.h"
@@ -622,6 +622,12 @@ link_list_panel(Buffer *buf)
Str tmp = Strnew_charp("<title>Link List</title>\
<h1 align=center>Link List</h1>\n");
if (buf->bufferprop & BP_INTERNAL ||
(buf->linklist == NULL && buf->href == NULL &&
buf->img == NULL)) {
return NULL;
}
if (buf->linklist) {
Strcat_charp(tmp, "<hr><h2>Links</h2>\n<ol>\n");
for (l = buf->linklist; l; l = l->next) {