aboutsummaryrefslogtreecommitdiffstats
path: root/src/android.c
diff options
context:
space:
mode:
authorPaul Eggert2024-01-20 16:52:31 -0800
committerPaul Eggert2024-01-20 17:28:53 -0800
commitb6ed79b71ccb3df8df05531d473ff9510cf9a39f (patch)
treecea1f448b8e163fc0972b09774f075f9c2277372 /src/android.c
parent0a47a5a4bef0a33c012302346685ecab861cc306 (diff)
downloademacs-b6ed79b71ccb3df8df05531d473ff9510cf9a39f.tar.gz
emacs-b6ed79b71ccb3df8df05531d473ff9510cf9a39f.zip
Be more systematic about parens in C source code
Be more systematic about putting space before paren in calls, and in avoiding unnecessary parentheses in macros. This was partly inspired by my wading through gcc -E output while debugging something else, and seeing too many parens. This patch does not change the generated .o files on my platform.
Diffstat (limited to 'src/android.c')
-rw-r--r--src/android.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android.c b/src/android.c
index fb7703d84ab..509f30a759b 100644
--- a/src/android.c
+++ b/src/android.c
@@ -6008,7 +6008,7 @@ android_build_jstring (const char *text)
6008 is created. */ 6008 is created. */
6009 6009
6010#if __GNUC__ >= 3 6010#if __GNUC__ >= 3
6011#define likely(cond) __builtin_expect ((cond), 1) 6011#define likely(cond) __builtin_expect (cond, 1)
6012#else /* __GNUC__ < 3 */ 6012#else /* __GNUC__ < 3 */
6013#define likely(cond) (cond) 6013#define likely(cond) (cond)
6014#endif /* __GNUC__ >= 3 */ 6014#endif /* __GNUC__ >= 3 */