>>>>> "ChangGil" == ChangGil Han <[EMAIL PROTECTED]> writes:
ChangGil> I have posted, twice in the last two weeks, patches for the
ChangGil> multibyte version of lyx cvs-source, or more precisely, for
ChangGil> the lyx-users of Chinese, Japanese and Korean languages.
ChangGil> They have not appeared on the lyx-devel mail-archive and
ChangGil> nobody has yet given any comments about them.
Sorry about that, I have been busy recently (I know it is a bad
excuse...). I finally took the time to update the www pages (not
visible yet) and mention your patch. Fell free to comment once it is up.
Concerning comments on your patch, this is far over my head and I am
not sure I could help here... Anyway, to show some goodwill [;)], I'll
comment a bit about your use of lyxerr. I found some constructs like
+ string ms(cs);
+ ms = "LyXCodeConv::lyxmbstowcs Cannot convert mbs to wcs " + ms +"\n";
+
+ lyxerr << ms.c_str() << endl;
Unless I am mistaken, a much better way of doing this is simply
lyxerr << "LyXCodeConv::lyxmbstowcs Cannot convert mbs to wcs "
<< cs << endl;
No need for an extra string.
Are there parts of your patch that are of general use and could be
included now?
JMarc