aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-11-15 16:46:07 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-11-15 16:46:07 +0000
commit7aa417f6d55ba9a158814b01b67abce24a27252f (patch)
tree0e2c9ac18f8500f833221a77cf06bf08a958ad3e /main.c
parentfix indent (diff)
downloadw3m-7aa417f6d55ba9a158814b01b67abce24a27252f.tar.gz
w3m-7aa417f6d55ba9a158814b01b67abce24a27252f.zip
[w3m-dev 03441] charset of save file
* file.c (_doFileCopy): use conv_from_system() (doFileSave): conv_from_system() * main.c (DownloadListBuffer): conv_from_system() From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 212a75c..0960f78 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.139 2002/11/15 16:17:00 ukai Exp $ */
+/* $Id: main.c,v 1.140 2002/11/15 16:46:12 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -5828,7 +5828,7 @@ DownloadListBuffer(void)
d->ok = TRUE;
Strcat_charp(src, "<pre>\n");
Strcat(src, Sprintf("%s\n --&gt; %s\n ", html_quote(d->url),
- html_quote(d->save)));
+ html_quote(conv_from_system(d->save))));
duration = cur_time - d->time;
if (!stat(d->save, &st)) {
size = st.st_size;