aboutsummaryrefslogtreecommitdiffstats
path: root/map.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-02-05 16:45:07 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-02-05 16:45:07 +0000
commit8f4d3b66f1fe0e525415ba6ffe473680ff29d356 (patch)
treefa5d3faf8a9d0475a1c75d98425690c74fe1c050 /map.c
parent[w3m-dev 03730] display decoded URL (diff)
downloadw3m-8f4d3b66f1fe0e525415ba6ffe473680ff29d356.tar.gz
w3m-8f4d3b66f1fe0e525415ba6ffe473680ff29d356.zip
fix indent
Diffstat (limited to '')
-rw-r--r--map.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/map.c b/map.c
index c25cc92..d33513c 100644
--- a/map.c
+++ b/map.c
@@ -1,4 +1,4 @@
-/* $Id: map.c,v 1.27 2003/02/05 16:43:59 ukai Exp $ */
+/* $Id: map.c,v 1.28 2003/02/05 16:45:08 ukai Exp $ */
/*
* client-side image maps
*/
@@ -277,9 +277,9 @@ follow_map_panel(Buffer *buf, char *name)
parseURL2(a->url, &pu, baseURL(buf));
p = parsedURL2Str(&pu)->ptr;
q = html_quote(p);
- if (DecodeURL)
+ if (DecodeURL)
p = html_quote(url_unquote_conv(p, buf->document_code));
- else
+ else
p = q;
Strcat_m_charp(mappage, "<tr valign=top><td><a href=\"", q, "\">",
html_quote(*a->alt ? a->alt : mybasename(a->url)),
@@ -411,9 +411,9 @@ append_map_info(Buffer *buf, Str tmp, FormItemList *fi)
continue;
parseURL2(a->url, &pu, baseURL(buf));
q = html_quote(parsedURL2Str(&pu)->ptr);
- if (DecodeURL)
+ if (DecodeURL)
p = html_quote(url_unquote_conv(a->url, buf->document_code));
- else
+ else
p = html_quote(a->url);
Strcat_m_charp(tmp, "<tr valign=top><td>&nbsp;&nbsp;<td><a href=\"",
q, "\">",
@@ -451,7 +451,7 @@ append_link_info(Buffer *buf, Str html, LinkList * link)
Strcat_charp(html, "[Rev]");
if (!l->url)
url = "(empty)";
- else if (DecodeURL)
+ else if (DecodeURL)
url = html_quote(url_unquote_conv(l->url, buf->document_code));
else
url = html_quote(l->url);
@@ -581,8 +581,7 @@ page_info_panel(Buffer *buf)
p = q;
Strcat_m_charp(tmp,
"<tr valign=top><td nowrap>URL of current image<td><a href=\"",
- q, "\">", p, "</a>",
- NULL);
+ q, "\">", p, "</a>", NULL);
}
a = retrieveCurrentForm(buf);
if (a != NULL) {