diff options
author | Brian Leung <leungbk@posteo.net> | 2022-04-03 01:37:28 -0700 |
---|---|---|
committer | Brian Leung <leungbk@posteo.net> | 2022-04-03 15:57:07 -0700 |
commit | 271bb32855853b011fceaf0ad2f829bce66b2a19 (patch) | |
tree | a13efbe2922f6d5beccee30631ffdfe5f38aa90a /src/nvim/fileio.c | |
parent | d73bf3138a802bb6c1c654cd913d4e91932287f8 (diff) | |
download | rneovim-271bb32855853b011fceaf0ad2f829bce66b2a19.tar.gz rneovim-271bb32855853b011fceaf0ad2f829bce66b2a19.tar.bz2 rneovim-271bb32855853b011fceaf0ad2f829bce66b2a19.zip |
vim-patch:8.2.4639: not sufficient parenthesis in preprocessor macros
Problem: Not sufficient parenthesis in preprocessor macros.
Solution: Add more parenthesis.
https://github.com/vim/vim/commit/9dac9b1751dd43c02470cc6a2aecaeea27abcc80
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 5e11a9683e..64ad9a6d80 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -80,7 +80,7 @@ #define FIO_ENDIAN_L 0x80 // little endian #define FIO_NOCONVERT 0x2000 // skip encoding conversion #define FIO_UCSBOM 0x4000 // check for BOM at start of file -#define FIO_ALL -1 // allow all formats +#define FIO_ALL (-1) // allow all formats /* When converting, a read() or write() may leave some bytes to be converted * for the next call. The value is guessed... */ |