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/normal.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/normal.c')
-rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 382c4943ff..cc604352e1 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -7879,7 +7879,7 @@ static void nv_event(cmdarg_T *cap) // not safe to perform garbage collection because there could be unreferenced // lists or dicts being used. may_garbage_collect = false; - queue_process_events(loop.events); + queue_process_events(main_loop.events); cap->retval |= CA_COMMAND_BUSY; // don't call edit() now } |