diff options
| author | Po Lu | 2023-05-31 21:08:33 +0800 |
|---|---|---|
| committer | Po Lu | 2023-05-31 21:08:33 +0800 |
| commit | 53f7cc2078c64fa169b167faa89f552fbafea18e (patch) | |
| tree | 5462f3536fe14872fbb6ad949fd9407780d03852 /src/android.c | |
| parent | 69c4bbc0d694594f43b02e9da5c236f3b9271b1d (diff) | |
| download | emacs-53f7cc2078c64fa169b167faa89f552fbafea18e.tar.gz emacs-53f7cc2078c64fa169b167faa89f552fbafea18e.zip | |
Fix build with Lisp_Object type checking
* configure.ac: Pass through `--enable-check-lisp-object-type'
on Android.
* src/alloc.c (android_make_lisp_symbol):
* src/android.c:
* src/androidfns.c (android_set_no_focus_on_map)
(android_set_no_accept_focus):
* src/androidfont.c (androidfont_match, androidfont_open_font):
* src/androidselect.c (Fandroid_get_clipboard)
(Fandroid_get_clipboard_targets):
* src/keyboard.c (make_lispy_event, syms_of_keyboard):
* src/sfntfont.c (sfnt_enum_font_1, sfntfont_list_1):
* src/textconv.c (really_set_point_and_mark): Fix Lisp_Object
and integer screw-ups.
Diffstat (limited to 'src/android.c')
| -rw-r--r-- | src/android.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/android.c b/src/android.c index 43122f73be1..67590ae373d 100644 --- a/src/android.c +++ b/src/android.c | |||
| @@ -6495,8 +6495,8 @@ android_exception_check_1 (jobject object) | |||
| 6495 | } | 6495 | } |
| 6496 | } | 6496 | } |
| 6497 | 6497 | ||
| 6498 | /* Like android_exception_check_one, except it takes more than one | 6498 | /* Like android_exception_check_1, except it takes more than one local |
| 6499 | local reference argument. */ | 6499 | reference argument. */ |
| 6500 | 6500 | ||
| 6501 | void | 6501 | void |
| 6502 | android_exception_check_2 (jobject object, jobject object1) | 6502 | android_exception_check_2 (jobject object, jobject object1) |