diff options
author | James McCoy <jamessan@jamessan.com> | 2016-11-14 11:35:19 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-11-14 14:16:40 -0500 |
commit | 0b686e9b61c92e13c32f1bbc126586437be8aade (patch) | |
tree | 4556d12ec412b0ff6a24aca20171581bea8e92aa /src | |
parent | 9d2985ecba47968c54590203e89a6614e61020d3 (diff) | |
download | rneovim-0b686e9b61c92e13c32f1bbc126586437be8aade.tar.gz rneovim-0b686e9b61c92e13c32f1bbc126586437be8aade.tar.bz2 rneovim-0b686e9b61c92e13c32f1bbc126586437be8aade.zip |
lint
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 159ea03162..1bd622bdba 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -512,7 +512,7 @@ int main(int argc, char **argv) need_start_insertmode = TRUE; set_vim_var_nr(VV_VIM_DID_ENTER, 1L); - apply_autocmds(EVENT_VIMENTER, NULL, NULL, FALSE, curbuf); + apply_autocmds(EVENT_VIMENTER, NULL, NULL, false, curbuf); TIME_MSG("VimEnter autocommands"); /* When a startup script or session file setup for diff'ing and |