vim-patch:8.2.4639: not sufficient parenthesis in preprocessor macros

Problem:    Not sufficient parenthesis in preprocessor macros.
Solution:   Add more parenthesis.
9dac9b1751
This commit is contained in:
Brian Leung
2022-04-03 01:37:28 -07:00
parent d73bf3138a
commit 271bb32855
15 changed files with 28 additions and 28 deletions

View File

@@ -87,8 +87,8 @@ typedef struct exarg exarg_T;
// behavior for bad character, "++bad=" argument
#define BAD_REPLACE '?' // replace it with '?' (default)
#define BAD_KEEP -1 // leave it
#define BAD_DROP -2 // erase it
#define BAD_KEEP (-1) // leave it
#define BAD_DROP (-2) // erase it
typedef void (*ex_func_T)(exarg_T *eap);