diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-29 16:53:55 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-29 16:53:55 -0400 |
commit | 458a6f58b67298ad3df276ffcc525eb3b32b8a56 (patch) | |
tree | 00fc7046af88678f51c414d66f3873bc9d6610a5 /src/nvim/ex_docmd.c | |
parent | 63b1a7d0cf6d192585c4929cff188e9c255c0a76 (diff) | |
download | rneovim-458a6f58b67298ad3df276ffcc525eb3b32b8a56.tar.gz rneovim-458a6f58b67298ad3df276ffcc525eb3b32b8a56.tar.bz2 rneovim-458a6f58b67298ad3df276ffcc525eb3b32b8a56.zip |
globals: arg_had_last is bool
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index cec5431bbd..bb23734a7c 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -6568,7 +6568,7 @@ void alist_set(alist_T *al, int count, char_u **files, int use_curbuf, int *fnum } if (al == &global_alist) - arg_had_last = FALSE; + arg_had_last = false; recursive--; } |