]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix display of IME window on MS-Windows (Bug#11732)
authorFujii Hironori <fujii.hironori@gmail.com>
Thu, 19 Feb 2015 11:40:48 +0000 (13:40 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 19 Feb 2015 11:40:48 +0000 (13:40 +0200)
 src/w32fns.c (w32_wnd_proc) <WM_IME_STARTCOMPOSITION>: Pass the
 message to DefWindowProc, after positioning the IME window, to
 trigger its display.

 Copyright-paperwork-exempt: yes

src/ChangeLog
src/w32fns.c

index 1c4758f969be3f32e6815c3f8867792d71bb51f6..87133535e978404dbcd215fb9052085df721122a 100644 (file)
@@ -1,3 +1,9 @@
+2015-02-19  Fujii Hironori  <fujii.hironori@gmail.com>  (tiny change)
+
+       * w32fns.c (w32_wnd_proc) <WM_IME_STARTCOMPOSITION>: Pass the
+       message to DefWindowProc, after positioning the IME window, to
+       trigger its display.  (Bug#11732)
+
 2015-02-18  Eli Zaretskii  <eliz@gnu.org>
 
        * emacs.c (Fkill_emacs): Exit with specified exit code even if
index 08000d87d381471fa70631ea049144e975d2f906..1e685ad6d98256a03213a1a3fa1e99e2016a3386 100644 (file)
@@ -3295,12 +3295,12 @@ w32_wnd_proc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
             field being reset to nil.  */
          f = x_window_to_frame (dpyinfo, hwnd);
          if (!(f && FRAME_LIVE_P (f)))
-           break;
+           goto dflt;
          w = XWINDOW (FRAME_SELECTED_WINDOW (f));
          /* Punt if someone changed the frame's selected window
             behind our back. */
          if (w != w32_system_caret_window)
-           break;
+           goto dflt;
 
          form.dwStyle = CFS_RECT;
          form.ptCurrentPos.x = w32_system_caret_x;
@@ -3318,17 +3318,19 @@ w32_wnd_proc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
 
          /* Punt if the window was deleted behind our back.  */
          if (!BUFFERP (w->contents))
-           break;
+           goto dflt;
 
          context = get_ime_context_fn (hwnd);
 
          if (!context)
-           break;
+           goto dflt;
 
          set_ime_composition_window_fn (context, &form);
          release_ime_context_fn (hwnd, context);
        }
-      break;
+      /* Pass WM_IME_STARTCOMPOSITION to DefWindowProc, so that the
+        composition window will actually be displayed.  */
+      goto dflt;
 
     case WM_IME_ENDCOMPOSITION:
       ignore_ime_char = 0;