aboutsummaryrefslogtreecommitdiffstats
path: root/main.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 /main.c
parent[w3m-dev 03730] display decoded URL (diff)
downloadw3m-8f4d3b66f1fe0e525415ba6ffe473680ff29d356.tar.gz
w3m-8f4d3b66f1fe0e525415ba6ffe473680ff29d356.zip
fix indent
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 29f6af0..b5babb0 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.209 2003/02/05 16:43:58 ukai Exp $ */
+/* $Id: main.c,v 1.210 2003/02/05 16:45:08 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -3880,7 +3880,7 @@ goURL0(char *prompt, int relative)
char *c_url = parsedURL2Str(current)->ptr;
if (DefaultURLString == DEFAULT_URL_CURRENT) {
url = c_url;
- if (DecodeURL)
+ if (DecodeURL)
url = url_unquote_conv(url, 0);
}
else
@@ -3893,7 +3893,7 @@ goURL0(char *prompt, int relative)
a_url = parsedURL2Str(&p_url)->ptr;
if (DefaultURLString == DEFAULT_URL_LINK) {
url = a_url;
- if (DecodeURL)
+ if (DecodeURL)
url = url_unquote_conv(url, Currentbuf->document_code);
}
else