diff options
| author | Paul Eggert | 2024-01-20 16:52:31 -0800 |
|---|---|---|
| committer | Paul Eggert | 2024-01-20 17:28:53 -0800 |
| commit | b6ed79b71ccb3df8df05531d473ff9510cf9a39f (patch) | |
| tree | cea1f448b8e163fc0972b09774f075f9c2277372 /src/androidterm.h | |
| parent | 0a47a5a4bef0a33c012302346685ecab861cc306 (diff) | |
| download | emacs-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/androidterm.h')
| -rw-r--r-- | src/androidterm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/androidterm.h b/src/androidterm.h index 7568055a20b..41c93067e82 100644 --- a/src/androidterm.h +++ b/src/androidterm.h | |||
| @@ -298,8 +298,8 @@ enum | |||
| 298 | code after any drawing command, but code can be run whenever | 298 | code after any drawing command, but code can be run whenever |
| 299 | someone asks for the handle necessary to draw. */ | 299 | someone asks for the handle necessary to draw. */ |
| 300 | #define FRAME_ANDROID_DRAWABLE(f) \ | 300 | #define FRAME_ANDROID_DRAWABLE(f) \ |
| 301 | (((f))->output_data.android->need_buffer_flip = true, \ | 301 | ((f)->output_data.android->need_buffer_flip = true, \ |
| 302 | FRAME_ANDROID_WINDOW ((f))) | 302 | FRAME_ANDROID_WINDOW (f)) |
| 303 | 303 | ||
| 304 | /* Return whether or not the frame F has been completely drawn. Used | 304 | /* Return whether or not the frame F has been completely drawn. Used |
| 305 | while handling async input. */ | 305 | while handling async input. */ |