diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-02-05 16:45:07 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-02-05 16:45:07 +0000 |
commit | 8f4d3b66f1fe0e525415ba6ffe473680ff29d356 (patch) | |
tree | fa5d3faf8a9d0475a1c75d98425690c74fe1c050 /anchor.c | |
parent | [w3m-dev 03730] display decoded URL (diff) | |
download | w3m-8f4d3b66f1fe0e525415ba6ffe473680ff29d356.tar.gz w3m-8f4d3b66f1fe0e525415ba6ffe473680ff29d356.zip |
fix indent
Diffstat (limited to 'anchor.c')
-rw-r--r-- | anchor.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1,4 +1,4 @@ -/* $Id: anchor.c,v 1.23 2003/02/05 16:43:56 ukai Exp $ */ +/* $Id: anchor.c,v 1.24 2003/02/05 16:45:07 ukai Exp $ */ #include "fm.h" #include "myctype.h" #include "regex.h" @@ -734,9 +734,9 @@ link_list_panel(Buffer *buf) p = parsedURL2Str(&pu)->ptr; u = html_quote(p); if (DecodeURL) - p = html_quote(url_unquote_conv(p, buf->document_code)); + p = html_quote(url_unquote_conv(p, buf->document_code)); else - p = u; + p = u; t = getAnchorText(buf, al, a); t = t ? html_quote(t) : ""; Strcat_m_charp(tmp, "<li><a href=\"", u, "\">", t, "</a><br>", p, @@ -756,9 +756,9 @@ link_list_panel(Buffer *buf) p = parsedURL2Str(&pu)->ptr; u = html_quote(p); if (DecodeURL) - p = html_quote(url_unquote_conv(p, buf->document_code)); + p = html_quote(url_unquote_conv(p, buf->document_code)); else - p = u; + p = u; if (a->title && *a->title) t = html_quote(a->title); else if (DecodeURL) @@ -788,10 +788,10 @@ link_list_panel(Buffer *buf) p = parsedURL2Str(&pu)->ptr; u = html_quote(p); if (DecodeURL) - p = html_quote(url_unquote_conv(p, - buf->document_code)); + p = html_quote(url_unquote_conv(p, + buf->document_code)); else - p = u; + p = u; if (m->alt && *m->alt) t = html_quote(m->alt); else if (DecodeURL) |