raster pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=5824d668af29cf1eb4bafc404cd61737a880d5f5
commit 5824d668af29cf1eb4bafc404cd61737a880d5f5 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Mon Mar 26 18:16:58 2018 +0900 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 1c1cc0e..a4d4579 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) --
