aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/macros.h
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2023-04-19 17:04:00 +0100
committerGitHub <noreply@github.com>2023-04-19 17:04:00 +0100
commit706f871014b46300180156590ff269ee38473989 (patch)
tree4c30cbf8470f2a4cecb2d1e1f44e223281f6b1f9 /src/nvim/macros.h
parent3940c435e4058f75b8ecbfc9f9c3b2a2c4b64f37 (diff)
downloadrneovim-706f871014b46300180156590ff269ee38473989.tar.gz
rneovim-706f871014b46300180156590ff269ee38473989.tar.bz2
rneovim-706f871014b46300180156590ff269ee38473989.zip
build: update uncrustify to 0.76
Diffstat (limited to 'src/nvim/macros.h')
-rw-r--r--src/nvim/macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/macros.h b/src/nvim/macros.h
index 242e3c381a..57cb298572 100644
--- a/src/nvim/macros.h
+++ b/src/nvim/macros.h
@@ -91,7 +91,7 @@
# define MCH_OPEN_RW(n, f) os_open((n), (f), 0)
#endif
-#define REPLACE_NORMAL(s) (((s) & REPLACE_FLAG) && !((s) & VREPLACE_FLAG))
+#define REPLACE_NORMAL(s) (((s)& REPLACE_FLAG) && !((s)& VREPLACE_FLAG))
// MB_PTR_ADV(): advance a pointer to the next character, taking care of
// multi-byte characters if needed. Skip over composing chars.