diff options
| author | Po Lu | 2023-07-08 10:15:38 +0800 |
|---|---|---|
| committer | Po Lu | 2023-07-08 10:15:38 +0800 |
| commit | c843f3e23b48dcf65e72db0eefa6a5a74c815ff6 (patch) | |
| tree | 28098de9e220b8f1aaa3c7f9f6a8e8b5e8e1250e /java | |
| parent | da27837d99fe2dd4c3825598b465107550a06a9d (diff) | |
| download | emacs-c843f3e23b48dcf65e72db0eefa6a5a74c815ff6.tar.gz emacs-c843f3e23b48dcf65e72db0eefa6a5a74c815ff6.zip | |
Update Android port
* java/org/gnu/emacs/EmacsService.java (DEBUG_IC)
(DEBUG_THREADS): Improve commentary.
* src/androidterm.c (handle_one_android_event): Signal
completion of IME events that have lost their frames.
(requestCursorUpdates): Don't set an edit counter as this event
won't be passed to the text conversion machinery.
Diffstat (limited to 'java')
| -rw-r--r-- | java/org/gnu/emacs/EmacsService.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/org/gnu/emacs/EmacsService.java b/java/org/gnu/emacs/EmacsService.java index 37048960f25..62fd2740286 100644 --- a/java/org/gnu/emacs/EmacsService.java +++ b/java/org/gnu/emacs/EmacsService.java | |||
| @@ -96,11 +96,11 @@ public final class EmacsService extends Service | |||
| 96 | public DisplayMetrics metrics; | 96 | public DisplayMetrics metrics; |
| 97 | 97 | ||
| 98 | /* Flag that says whether or not to print verbose debugging | 98 | /* Flag that says whether or not to print verbose debugging |
| 99 | information. */ | 99 | information when responding to an input method. */ |
| 100 | public static final boolean DEBUG_IC = false; | 100 | public static final boolean DEBUG_IC = false; |
| 101 | 101 | ||
| 102 | /* Flag that says whether or not to perform extra checks on threads | 102 | /* Flag that says whether or not to stringently check that only the |
| 103 | performing drawing calls. */ | 103 | Emacs thread is performing drawing calls. */ |
| 104 | private static final boolean DEBUG_THREADS = false; | 104 | private static final boolean DEBUG_THREADS = false; |
| 105 | 105 | ||
| 106 | /* Atomic integer used for synchronization between | 106 | /* Atomic integer used for synchronization between |