Skip to content
Snippets Groups Projects
Commit c38a9758 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Remove debug output introduced in last commit

parent 4c89829e
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -976,7 +976,10 @@ static int x11_event(XEvent *ev)
case XLookupChars:
if (lus == XLookupChars || ((ev->xkey.state & (Mod1Mask | ControlMask)) == 0)) {
for (i = 0; i < cnt; i++) {
ch = cpchar_from_unicode_cpoint(getcodepage(), wbuf[i], 0);
if (wbuf[i] < 127)
ch = wbuf[i];
else
ch = cpchar_from_unicode_cpoint(getcodepage(), wbuf[i], 0);
if (ch) {
write(key_pipe[1], &ch, 1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment