From da27837d99fe2dd4c3825598b465107550a06a9d Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sat, 8 Jul 2023 08:55:24 +0800 Subject: [PATCH] ; Fix whitespace * src/android.c (android_blit_xor): (android_check_query_urgent): (android_run_in_emacs_thread): (android_update_extracted_text): Fix whitespace. --- src/android.c | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/android.c b/src/android.c index a6bc8217820..5850b6079c9 100644 --- a/src/android.c +++ b/src/android.c @@ -4815,8 +4815,8 @@ android_blit_xor (int src_x, int src_y, int width, int height, temp = MIN (mask_info->width, width); while (temp--) *long_dst++ = ((*(long_src++) - & (0u - (*(mask_current++) & 1))) - & 0xffffff); + & (0u - (*(mask_current++) & 1))) + & 0xffffff); } src_current += src_info->stride; @@ -7187,7 +7187,7 @@ android_check_query_urgent (void) return; __android_log_print (ANDROID_LOG_VERBOSE, __func__, - "Responding to urgent query..."); + "Responding to urgent query..."); if (!__atomic_load_n (&android_servicing_query, __ATOMIC_ACQUIRE)) return; @@ -7407,7 +7407,7 @@ android_run_in_emacs_thread (void (*proc) (void *), void *closure) query. */ eassert (!__atomic_load_n (&android_servicing_query, - __ATOMIC_ACQUIRE) + __ATOMIC_ACQUIRE) || (__atomic_load_n (&android_servicing_query, __ATOMIC_ACQUIRE) == 2)); @@ -7500,13 +7500,12 @@ android_update_extracted_text (android_window window, void *text, emacs_service, service_class.class, method, object, - /* N.B. that - text is not - jobject, - because that - type is not - available in - androidgui.h. */ + /* N.B. that text is + not jobject, + because that type + is not available + in + androidgui.h. */ (jobject) text, (jint) token); android_exception_check_1 (text); -- 2.39.2