aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.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/editfns.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/editfns.c')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 7b84f71f4a8..0cecd81c07f 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1908,7 +1908,7 @@ determines whether case is significant or ignored. */)
1908#define USE_HEURISTIC 1908#define USE_HEURISTIC
1909 1909
1910#define XVECREF_YVECREF_EQUAL(ctx, xoff, yoff) \ 1910#define XVECREF_YVECREF_EQUAL(ctx, xoff, yoff) \
1911 buffer_chars_equal ((ctx), (xoff), (yoff)) 1911 buffer_chars_equal (ctx, xoff, yoff)
1912 1912
1913#define OFFSET ptrdiff_t 1913#define OFFSET ptrdiff_t
1914 1914