]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't set callbacks on XIC when adjusting spot if callbacks are off
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Jan 2022 06:36:21 +0000 (14:36 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 10 Jan 2022 06:36:21 +0000 (14:36 +0800)
* src/xfns.c (xic_set_preeditarea): Don't set callbacks if the
XIC style is not XIMPreeditCallbacks.  (bug#53146)

src/xfns.c

index 9cf6f528198c1aade5476b6be80e150b4f57077f..cd48419fbd33e4a6bc0ed9f36078d796d3c9442a 100644 (file)
@@ -2816,20 +2816,24 @@ free_frame_xic (struct frame *f)
 void
 xic_set_preeditarea (struct window *w, int x, int y)
 {
-  struct frame *f = XFRAME (w->frame);
+  struct frame *f = WINDOW_XFRAME (w);
   XVaNestedList attr;
   XPoint spot;
 
-  if (FRAME_XIC (WINDOW_XFRAME (w)))
+  if (FRAME_XIC (f))
     {
       spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w) + WINDOW_LEFT_MARGIN_WIDTH(w);
       spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
-      attr = XVaCreateNestedList (0, XNSpotLocation, &spot,
-                                 XNPreeditStartCallback, &Xxic_preedit_start_callback,
-                                 XNPreeditDoneCallback, &Xxic_preedit_done_callback,
-                                 XNPreeditDrawCallback, &Xxic_preedit_draw_callback,
-                                 XNPreeditCaretCallback, &Xxic_preedit_caret_callback,
-                                 NULL);
+
+      if (FRAME_XIC_STYLE (f) & XIMPreeditCallbacks)
+       attr = XVaCreateNestedList (0, XNSpotLocation, &spot,
+                                   XNPreeditStartCallback, &Xxic_preedit_start_callback,
+                                   XNPreeditDoneCallback, &Xxic_preedit_done_callback,
+                                   XNPreeditDrawCallback, &Xxic_preedit_draw_callback,
+                                   XNPreeditCaretCallback, &Xxic_preedit_caret_callback,
+                                   NULL);
+      else
+       attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
       XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
       XFree (attr);
     }