Comment 3 for bug 944183

Revision history for this message
David Mathog (mathog) wrote : Re: Windows built from trunk ignoring ^U for some characters

text-context.cpp in two places has something like this:

    std::stringstream ss;
    ss << tc->uni;
    ss >> uv;

where it used to have something like this:

    sscanf(tc->uni, "%x", &uv);

That looks like it might be the issue. Reverting and recompiling now...