1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 22:20:52 -08:00

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.
This commit is contained in:
Paul Eggert 2024-01-20 16:52:31 -08:00
parent 0a47a5a4be
commit b6ed79b71c
46 changed files with 308 additions and 308 deletions

View file

@ -445,7 +445,7 @@ loaded by the special invocation:
where ``static'' defines a section of code which will be run upon the
object (containing class) being loaded. This is like:
__attribute__((constructor))
__attribute__ ((constructor))
on systems where shared object constructors are supported.