diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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; } |