diff options
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index bc94d5a9..52d48656 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -1040,12 +1040,7 @@ write_file(char *fpath, int saveheader, int *islocal) } } } -#ifdef SUPPORT_GB - if (current_font_type == TYPE_GB) { - fprintf(fp, "%s\n", hc_convert_str(msg, HC_GBtoBIG, HC_DO_SINGLE)); - } else -#endif - fprintf(fp, "%s\n", msg); + fprintf(fp, "%s\n", msg); } } free(p); |