Skip to content

Commit 0c6a049

Browse files
committed
2 parents 7e404a4 + f9738a1 commit 0c6a049

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/print.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,10 +1238,12 @@ void printbody(FILE *fp, struct emailinfo *email, int maybe_reply, int is_reply)
12381238

12391239
if (!set_showhtml) {
12401240
fprintf(fp, "<pre id=\"body\">\n");
1241-
fprintf(fp, "<a name=\"start%d\" accesskey=\"j\" id=\"start%d\"></a>", email->msgnum,email->msgnum);
12421241
pre = TRUE;
12431242
}
12441243

1244+
/* tag the start of the message body */
1245+
fprintf(fp, "<a name=\"start%d\" accesskey=\"j\" id=\"start%d\"></a>", email->msgnum,email->msgnum);
1246+
12451247
if (set_showhtml == 2)
12461248
init_txt2html();
12471249
inquote = 0;

src/string.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,12 @@ struct i18n_alt_charset_table i18n_charsettable[] = {
217217
{"KS_C_5601-1987","CP949"},
218218
{"KS_C_5601-1989","CP949"},
219219

220+
/* Thai */
221+
{"windows-874","CP874"},
222+
223+
/* Chinese */
224+
{"x-gbk","GB18030"},
225+
220226
/* Cyrillic */
221227
{"x-mac-cyrillic","MacCyrillic"},
222228
{"ibm866","CP866"}

0 commit comments

Comments
 (0)