From 5824d668af29cf1eb4bafc404cd61737a880d5f5 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 26 Mar 2018 18:16:58 +0900 Subject: [PATCH] win - imf - fix small typo that was not checking the imf ptr... it was checking the address of the imf ptr which is always true. @fix --- src/bin/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/win.c b/src/bin/win.c index 1c1cc0e6..a4d45792 100644 --- a/src/bin/win.c +++ b/src/bin/win.c @@ -1414,7 +1414,7 @@ _cb_win_key_down(void *data, /* 4th/ Composing */ /* composing */ - if (&wn->khdl.imf) + if (wn->khdl.imf) { // EXCEPTION. Don't filter modifiers alt+shift -> breaks emacs // and jed (alt+shift+5 for search/replace for example)