diff options
| author | Po Lu | 2024-01-18 10:32:50 +0800 |
|---|---|---|
| committer | Po Lu | 2024-01-18 10:32:50 +0800 |
| commit | d4d5830f8a071a3634926adeeaedaf573d49a063 (patch) | |
| tree | 44d12bbcb88b3a09bef96cf936f354ea51d400ef /src/androidterm.c | |
| parent | 5f5faad249747ce5bd4b7f2968f737206c136265 (diff) | |
| download | emacs-d4d5830f8a071a3634926adeeaedaf573d49a063.tar.gz emacs-d4d5830f8a071a3634926adeeaedaf573d49a063.zip | |
; * src/androidterm.c (handle_one_android_event): Fix typo.
Diffstat (limited to 'src/androidterm.c')
| -rw-r--r-- | src/androidterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/androidterm.c b/src/androidterm.c index 2e4ee64f390..8632df1d4fc 100644 --- a/src/androidterm.c +++ b/src/androidterm.c | |||
| @@ -938,9 +938,9 @@ handle_one_android_event (struct android_display_info *dpyinfo, | |||
| 938 | sure it is processed before any subsequent edits. */ | 938 | sure it is processed before any subsequent edits. */ |
| 939 | textconv_barrier (f, event->xkey.counter); | 939 | textconv_barrier (f, event->xkey.counter); |
| 940 | 940 | ||
| 941 | wchar_t copy_buffer[129]; | 941 | wchar_t copy_buffer[512]; |
| 942 | wchar_t *copy_bufptr = copy_buffer; | 942 | wchar_t *copy_bufptr = copy_buffer; |
| 943 | int copy_bufsiz = 128 * sizeof (wchar_t); | 943 | int copy_bufsiz = 512; |
| 944 | 944 | ||
| 945 | event->xkey.state | 945 | event->xkey.state |
| 946 | |= android_emacs_to_android_modifiers (dpyinfo, | 946 | |= android_emacs_to_android_modifiers (dpyinfo, |