mirror of
https://github.com/neovim/neovim.git
synced 2025-09-13 14:58:18 +00:00
vim-patch:8.1.1667: flags for Ex commands may clash with other symbols
Problem: Flags for Ex commands may clash with other symbols. Solution: Prepend with EX_.8071cb2c64
N/A patches for version.c: vim-patch:8.1.1672: "make cmdidxs" doesn't work Problem: "make cmdidxs" doesn't work. Solution: Update macro names. (Naruhiko Nishino, closes vim/vim#4660)d94ac0caca
Error message for src/nvim/ex_cmds.lua which omits the "EX_" prefix for the flags.
This commit is contained in:
@@ -2159,10 +2159,11 @@ static buf_T *buflist_findname_file_id(char_u *ffname, FileID *file_id,
|
||||
int buflist_findpat(
|
||||
const char_u *pattern,
|
||||
const char_u *pattern_end, // pointer to first char after pattern
|
||||
int unlisted, // find unlisted buffers
|
||||
int diffmode, // find diff-mode buffers only
|
||||
int curtab_only // find buffers in current tab only
|
||||
bool unlisted, // find unlisted buffers
|
||||
bool diffmode, // find diff-mode buffers only
|
||||
bool curtab_only // find buffers in current tab only
|
||||
)
|
||||
FUNC_ATTR_NONNULL_ARG(1)
|
||||
{
|
||||
int match = -1;
|
||||
int find_listed;
|
||||
|
Reference in New Issue
Block a user