The following are only _suggestions_ for rewording, so if you wish to
adopt any of them, please make the patch since you are the author.
> + * USE_TH_JP_AUTO_DETECT enables a new Japanese charset detection routine.
> + * By old detection strategy, Lynx always thought the document may be
> + * written in mixed three kanji codes (JIS, EUC and SJIS).
> + * But by new one, Lynx first assume the document is written in one or
> + * JIS + another kanji code (JIS, EUC, SJIS, EUC+JIS and SJIS+JIS).
> + * When it's found the assumption is wrong, Lynx thinks it's
> + * written in mixed three kanji codes.
> + * The first assumption is usually correct.
> + * So I believe this makes Lynx is a better guesser.
+ * USE_TH_JP_AUTO_DETECT enables a new Japanese charset detection routine.
+ * With the old detection strategy, Lynx always thought a document was
+ * written in mixture of three kanji codes (JIS, EUC and SJIS). The new
+ * strategy is for Lynx to first assume the document is written in one code
+ * or JIS + one other kanji code (JIS, EUC, SJIS, EUC+JIS and SJIS+JIS).
+ * The first assumption is usually correct, but if the assumption is wrong,
+ * Lynx falls back to the old assumption of the three kanji codes mixed.
> + * If CONV_JISX0201KANA_JISX0208KANA is set,
> + * Lynx will convert JIS X0201 Kana to JIS X0208 Kana,
> + * i.e. convert half width kana to full width.
> + * I've not tested the case not to define this well.
+ * If CONV_JISX0201KANA_JISX0208KANA is set, Lynx will convert
+ * JIS X0201 Kana to JIS X0208 Kana, i.e., convert half-width kana
+ * to full-width.
> + * Uncomment this line to enable kanji code override routine.
> + * The code can be changed by ^L.
> + * More precisely, this enables us to change the assumption kanji
> + * code for the document. This assumption overrides the charaset
> + * by META tag and HTTP responses.
> + */
> +/*#define KANJI_CODE_OVERRIDE */
+ * Uncomment the following line to enable the kanji code override routine.
+ * The code can be changed by pressing ^L. More precisely, this allows
+ * the user to override the assumption about the kanji code for the document
+ * which Lynx has made on the basis of a META tag and HTTP response.
+ */
+/*#define KANJI_CODE_OVERRIDE */
__Henry