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/comp.c | |
| 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/comp.c')
| -rw-r--r-- | src/comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c index 2872c28a2b1..3f9e738d9a7 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -522,7 +522,7 @@ load_gccjit_if_necessary (bool mandatory) | |||
| 522 | 522 | ||
| 523 | #define DECL_BLOCK(name, func) \ | 523 | #define DECL_BLOCK(name, func) \ |
| 524 | gcc_jit_block *(name) = \ | 524 | gcc_jit_block *(name) = \ |
| 525 | gcc_jit_function_new_block ((func), STR (name)) | 525 | gcc_jit_function_new_block (func, STR (name)) |
| 526 | 526 | ||
| 527 | #ifndef WINDOWSNT | 527 | #ifndef WINDOWSNT |
| 528 | # ifdef HAVE__SETJMP | 528 | # ifdef HAVE__SETJMP |