aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-07-22 17:27:19 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-07-22 17:27:19 +0000
commit47a2009371e9796ede55c3dd8a0acb1b82525c0d (patch)
treef5aa1710b9e0f91ddd78425fd226a93ebafc3712 /main.c
parent[w3m-dev 03939] next/prev visited link (diff)
downloadw3m-47a2009371e9796ede55c3dd8a0acb1b82525c0d.tar.gz
w3m-47a2009371e9796ede55c3dd8a0acb1b82525c0d.zip
[w3m-dev 03941] fix character encoding for 'v'
* main.c (vwSrc): use document_code as DisplayCode From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--main.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.c b/main.c
index 6eb5a40..992b0bf 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.227 2003/07/22 17:24:49 ukai Exp $ */
+/* $Id: main.c,v 1.228 2003/07/22 17:27:19 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -4531,12 +4531,22 @@ vwSrc(void)
if (Currentbuf->sourcefile == NULL) {
if (Currentbuf->pagerSource &&
!strcasecmp(Currentbuf->type, "text/plain")) {
+#ifdef JP_CHARSET
+ char old_code;
+#endif
FILE *f;
Str tmpf = tmpfname(TMPF_SRC, NULL);
f = fopen(tmpf->ptr, "w");
if (f == NULL)
return;
+#ifdef JP_CHARSET
+ old_code = DisplayCode;
+ DisplayCode = Currentbuf->document_code;
+#endif
saveBufferBody(Currentbuf, f, TRUE);
+#ifdef JP_CHARSET
+ DisplayCode = old_code;
+#endif
fclose(f);
Currentbuf->sourcefile = tmpf->ptr;
}