Anonymous - 2014-01-17

Originally posted by: hchiy...@gmail.com

I confront with same problem to handle Japanese.

To fix this problem, change "ascii" to "mbcs" in wrapper.h and wrapper.cpp.

This is not complete solution but it works. one existing problem is
to print string to Command Logger. for example,

print mxs.selection[0]

can't print multi byte character correctly but

print unicode(mxs.selection[0], 'mbcs')

works fine.