diff options
author | Steven Oliver <oliver.steven@gmail.com> | 2015-08-30 16:27:47 -0400 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2015-09-04 11:07:33 +0200 |
commit | f7c5dc4db266bfc1db3ea76d114d9a04413fe875 (patch) | |
tree | ec6fdb7594d41c89d3b71f9ebd82ced7652b2e0d /src/nvim/ex_cmds.c | |
parent | ea33a75d0738526dd1ecfdeb387aeccb15fb7832 (diff) | |
download | rneovim-f7c5dc4db266bfc1db3ea76d114d9a04413fe875.tar.gz rneovim-f7c5dc4db266bfc1db3ea76d114d9a04413fe875.tar.bz2 rneovim-f7c5dc4db266bfc1db3ea76d114d9a04413fe875.zip |
Remove instances of TRUE/FALSE macro
memory.c
os_unix.c
path.c
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 1e150444d0..c00b7012d1 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -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); } |