Correct deadlock in Android port

* java/org/gnu/emacs/EmacsService.java (updateCursorAnchorInfo):
Delete extraneous whitespace.
(updateExtractedText): Encase synchronous IM manager operation
in deadlock prevention mechanism.
This commit is contained in:
Po Lu
2023-09-04 09:42:10 +08:00
parent 8255b9c1f1
commit 4bbad20d70

View File

@@ -889,8 +889,6 @@ public final class EmacsService extends Service
0);
info = builder.build ();
if (DEBUG_IC)
Log.d (TAG, ("updateCursorAnchorInfo: " + x + " " + y
+ " " + yBaseline + "-" + yBottom));
@@ -1142,8 +1140,10 @@ public final class EmacsService extends Service
if (DEBUG_IC)
Log.d (TAG, "updateExtractedText: @" + token + ", " + text);
icBeginSynchronous ();
window.view.imManager.updateExtractedText (window.view,
token, text);
icEndSynchronous ();
}