Revert "Remove unnecessary XFilterEvent call." - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 5f48e89716a74e75b6040fdb067372180626b699
 (DIR) parent bdd649a10289ade364f3deab3bbf6ee3169d67ca
 (HTM) Author: Weng Xuetian <wengxt@gmail.com>
       Date:   Thu,  2 Jul 2015 08:31:12 +0200
       
       Revert "Remove unnecessary XFilterEvent call."
       
       This reverts commit d2937b05aed9cee8d6651cd806d31682a853c773.
       
       Diffstat:
         M st.c                                |       7 +++++++
       
       1 file changed, 7 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/st.c b/st.c
       @@ -3912,6 +3912,13 @@ run(void) {
                /* Waiting for window mapping */
                do {
                        XNextEvent(xw.dpy, &ev);
       +                /*
       +                 * XFilterEvent is required to be called after you using XOpenIM,
       +                 * this is not unnecessary.It does not only filter the key event,
       +                 * but some clientmessage for input method as well.
       +                 */
       +                if(XFilterEvent(&ev, None))
       +                        continue;
                        if(ev.type == ConfigureNotify) {
                                w = ev.xconfigure.width;
                                h = ev.xconfigure.height;