diff options
| author | Po Lu | 2025-05-05 08:51:42 +0800 |
|---|---|---|
| committer | Po Lu | 2025-05-05 08:51:48 +0800 |
| commit | b97b3b057ca8128cb479f8d3893816d146cfef59 (patch) | |
| tree | 42a871237ee6a6ca95f3a394366ff9257bf25e9e /src/androidterm.c | |
| parent | 815dea7b59392d83ca8f9e98d1569484aea605ad (diff) | |
| download | emacs-b97b3b057ca8128cb479f8d3893816d146cfef59.tar.gz emacs-b97b3b057ca8128cb479f8d3893816d146cfef59.zip | |
Synchronize Android and Haiku terminal frontends with X
* src/androidterm.c (handle_one_android_event):
* src/haikuterm.c (haiku_read_socket): Port recent changes to
handle_one_xevent.
Diffstat (limited to 'src/androidterm.c')
| -rw-r--r-- | src/androidterm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/androidterm.c b/src/androidterm.c index 96f595f3bdf..beab3406fdd 100644 --- a/src/androidterm.c +++ b/src/androidterm.c | |||
| @@ -957,9 +957,9 @@ handle_one_android_event (struct android_display_info *dpyinfo, | |||
| 957 | /* If mouse-highlight is an integer, input clears out | 957 | /* If mouse-highlight is an integer, input clears out |
| 958 | mouse highlighting. */ | 958 | mouse highlighting. */ |
| 959 | if (!hlinfo->mouse_face_hidden && FIXNUMP (Vmouse_highlight) | 959 | if (!hlinfo->mouse_face_hidden && FIXNUMP (Vmouse_highlight) |
| 960 | && (any == 0 | 960 | && (any == NULL |
| 961 | || !EQ (any->tool_bar_window, hlinfo->mouse_face_window) | 961 | || (!EQ (any->tool_bar_window, hlinfo->mouse_face_window) |
| 962 | || !EQ (any->tab_bar_window, hlinfo->mouse_face_window))) | 962 | && !EQ (any->tab_bar_window, hlinfo->mouse_face_window)))) |
| 963 | { | 963 | { |
| 964 | mouse_frame = hlinfo->mouse_face_mouse_frame; | 964 | mouse_frame = hlinfo->mouse_face_mouse_frame; |
| 965 | 965 | ||