aboutsummaryrefslogtreecommitdiffstats
path: root/anchor.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-09-24 18:48:58 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-09-24 18:48:58 +0000
commitb411c1109dc4305a231689405e214f2e307c3cde (patch)
treec5a293e6144d774e7f7d32da269f57ebed50d328 /anchor.c
parentgettextize (diff)
downloadw3m-b411c1109dc4305a231689405e214f2e307c3cde.tar.gz
w3m-b411c1109dc4305a231689405e214f2e307c3cde.zip
fix indent
Diffstat (limited to '')
-rw-r--r--anchor.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/anchor.c b/anchor.c
index d78163d..4244d47 100644
--- a/anchor.c
+++ b/anchor.c
@@ -1,4 +1,4 @@
-/* $Id: anchor.c,v 1.28 2003/09/22 21:02:16 ukai Exp $ */
+/* $Id: anchor.c,v 1.29 2003/09/24 18:48:58 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include "regex.h"
@@ -811,7 +811,8 @@ link_list_panel(Buffer *buf)
if (a->title && *a->title)
t = html_quote(a->title);
else if (DecodeURL)
- t = html_quote(url_unquote_conv(a->url, buf->document_charset));
+ t = html_quote(url_unquote_conv
+ (a->url, buf->document_charset));
else
t = html_quote(a->url);
Strcat_m_charp(tmp, "<li><a href=\"", u, "\">", t, "</a><br>", p,
@@ -838,14 +839,16 @@ link_list_panel(Buffer *buf)
u = html_quote(p);
if (DecodeURL)
p = html_quote(url_unquote_conv(p,
- buf->document_charset));
+ buf->
+ document_charset));
else
p = u;
if (m->alt && *m->alt)
t = html_quote(m->alt);
else if (DecodeURL)
t = html_quote(url_unquote_conv(m->url,
- buf->document_charset));
+ buf->
+ document_charset));
else
t = html_quote(m->url);
Strcat_m_charp(tmp, "<li><a href=\"", u, "\">", t,