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/buffer.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/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index a28d9774ab..5ad56ff450 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -4535,7 +4535,7 @@ do_arg_all ( for (i = 0; i < count && i < opened_len && !got_int; ++i) { if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1) - arg_had_last = TRUE; + arg_had_last = true; if (opened[i] > 0) { /* Move the already present window to below the current window */ if (curwin->w_arg_idx != i) { |