aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/macros.h
diff options
context:
space:
mode:
authorBrian Leung <leungbk@posteo.net>2022-04-03 02:36:01 -0700
committerBrian Leung <leungbk@posteo.net>2022-04-03 16:11:23 -0700
commit69e11b58b4db0952f11a5ff85aa7150b5f5b8db8 (patch)
tree2c10f1348a50480eacf10a003c49e6f16a5f8049 /src/nvim/macros.h
parent271bb32855853b011fceaf0ad2f829bce66b2a19 (diff)
downloadrneovim-69e11b58b4db0952f11a5ff85aa7150b5f5b8db8.tar.gz
rneovim-69e11b58b4db0952f11a5ff85aa7150b5f5b8db8.tar.bz2
rneovim-69e11b58b4db0952f11a5ff85aa7150b5f5b8db8.zip
vim-patch:8.2.4402: missing parenthesis may cause unexpected problems
Problem: Missing parenthesis may cause unexpected problems. Solution: Add more parenthesis is macros. https://github.com/vim/vim/commit/ae6f1d8b14c2f63811ee83ef14e32086fb3e9b83
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 5017e286d3..be1ab935c0 100644
--- a/src/nvim/macros.h
+++ b/src/nvim/macros.h
@@ -133,7 +133,7 @@
#define ARRAY_LAST_ENTRY(arr) (arr)[ARRAY_SIZE(arr) - 1]
// Duplicated in os/win_defs.h to avoid include-order sensitivity.
-#define RGB_(r, g, b) ((r << 16) | (g << 8) | b)
+#define RGB_(r, g, b) (((r) << 16) | ((g) << 8) | (b))
#define STR_(x) #x
#define STR(x) STR_(x)