fix indent

This commit is contained in:
Fumitoshi UKAI
2002-12-10 15:36:10 +00:00
parent b422f71d84
commit df0a52887b
3 changed files with 10 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: anchor.c,v 1.13 2002/12/09 15:51:08 ukai Exp $ */
/* $Id: anchor.c,v 1.14 2002/12/10 15:36:10 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include "regex.h"
@@ -643,8 +643,8 @@ link_list_panel(Buffer *buf)
for (i = 0; i < al->nanchor; i++) {
a = &al->anchors[i];
if (a->slave)
continue;
parseURL2(a->url, &pu, baseURL(buf));
continue;
parseURL2(a->url, &pu, baseURL(buf));
u = html_quote(parsedURL2Str(&pu)->ptr);
t = getAnchorText(buf, al, a);
t = t ? html_quote(t) : "";
@@ -660,8 +660,8 @@ link_list_panel(Buffer *buf)
for (i = 0; i < al->nanchor; i++) {
a = &al->anchors[i];
if (a->slave)
continue;
parseURL2(a->url, &pu, baseURL(buf));
continue;
parseURL2(a->url, &pu, baseURL(buf));
u = html_quote(parsedURL2Str(&pu)->ptr);
t = (a->title && *a->title) ? html_quote(a->title) :
html_quote(a->url);