mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
Remove instances of TRUE/FALSE macro
memory.c os_unix.c path.c
This commit is contained in:

committed by
Björn Linse

parent
ea33a75d07
commit
f7c5dc4db2
@@ -4429,16 +4429,15 @@ void ex_global(exarg_T *eap)
|
||||
if (got_int)
|
||||
MSG(_(e_interr));
|
||||
else if (ndone == 0) {
|
||||
if (type == 'v')
|
||||
if (type == 'v') {
|
||||
smsg(_("Pattern found in every line: %s"), pat);
|
||||
else
|
||||
} else {
|
||||
smsg(_("Pattern not found: %s"), pat);
|
||||
} else {
|
||||
start_global_changes();
|
||||
global_exe(cmd);
|
||||
end_global_changes();
|
||||
}
|
||||
|
||||
ml_clearmarked(); /* clear rest of the marks */
|
||||
vim_regfree(regmatch.regprog);
|
||||
}
|
||||
|
Reference in New Issue
Block a user