diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-05-31 13:49:04 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-05-31 13:49:04 -0400 |
commit | 3dd3d129d3a4644c3f2c4de4df4b2ceda380448e (patch) | |
tree | 0c7358f88da7baec437c89f937e105a1e8adfbf9 /src/nvim/edit.c | |
parent | 4276a03e8185e9498e4b7983bf02e151c4b4b197 (diff) | |
parent | 77540a04582927e842c7d5522bb862756da2cbba (diff) | |
download | rneovim-3dd3d129d3a4644c3f2c4de4df4b2ceda380448e.tar.gz rneovim-3dd3d129d3a4644c3f2c4de4df4b2ceda380448e.tar.bz2 rneovim-3dd3d129d3a4644c3f2c4de4df4b2ceda380448e.zip |
Merge pull request #4844 from ZyX-I/rename-main-loop
Rename main loop variable from loop to main_loop
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index e131da8fe0..44aaedb9b4 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -961,7 +961,7 @@ static int insert_handle_key(InsertState *s) break; case K_EVENT: // some event - queue_process_events(loop.events); + queue_process_events(main_loop.events); break; case K_FOCUSGAINED: // Neovim has been given focus |