diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-10-06 15:47:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 15:47:50 +0800 |
commit | 1cb858b355e76a2be4172c305d73018b10d48efd (patch) | |
tree | c0d62cf53828767b9099d3c373d911ca8dd3bb42 /src/nvim/arglist.c | |
parent | 5acf52e19b1f9920fe95b55588eff256a439d816 (diff) | |
download | rneovim-1cb858b355e76a2be4172c305d73018b10d48efd.tar.gz rneovim-1cb858b355e76a2be4172c305d73018b10d48efd.tar.bz2 rneovim-1cb858b355e76a2be4172c305d73018b10d48efd.zip |
vim-patch:9.0.0657: too many #ifdefs (#20506)
Problem: Too many #ifdefs.
Solution: Graduate the +cmdwin feature. Now the tiny and small builds are
equal, drop the small build. (Martin Tournoij, closes vim/vim#11268)
https://github.com/vim/vim/commit/7904fa420eb577274c4c3711295240100167d495
Accidentally forgot to mark as ported:
vim-patch:9.0.0471: no test for what patch 9.0.0469 fixes
Problem: No test for what patch 9.0.0469 fixes.
Solution: Add a test. (closes vim/vim#11140)
https://github.com/vim/vim/commit/12167d8b84c4a99751d9928f1a9a59c90b14931f
Diffstat (limited to 'src/nvim/arglist.c')
-rw-r--r-- | src/nvim/arglist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/arglist.c b/src/nvim/arglist.c index ae174403a0..c7af1a71be 100644 --- a/src/nvim/arglist.c +++ b/src/nvim/arglist.c @@ -1024,7 +1024,8 @@ static void do_arg_all(int count, int forceit, int keep_tabs) return; } if (ARGCOUNT <= 0) { - // Don't give an error message. We don't want it when the ":all" command is in the .vimrc. + // Don't give an error message. We don't want it when the ":all" + // command is in the .vimrc. return; } setpcmark(); |