diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-09-13 14:32:32 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-09-13 18:28:32 -0400 |
commit | def28adfdd7a9ee643224e36f3f601f9f7222f46 (patch) | |
tree | 11123540c97d3eb7c4eca9bf62d1b4cd21cec3d1 /src/nvim/main.c | |
parent | 1761a4af711410076e6fdb5f727a83ee54ff5988 (diff) | |
download | rneovim-def28adfdd7a9ee643224e36f3f601f9f7222f46.tar.gz rneovim-def28adfdd7a9ee643224e36f3f601f9f7222f46.tar.bz2 rneovim-def28adfdd7a9ee643224e36f3f601f9f7222f46.zip |
vim-patch:7.4.312
Problem: Cannot figure out what argument list is being used for a window.
Solution: Add the arglistid() function. (Marcin Szamotulski)
https://code.google.com/p/vim/source/detail?r=v7-4-312
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index fc1826975a..7dc299e73b 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -192,6 +192,7 @@ int main(int argc, char **argv) init_yank(); /* init yank buffers */ alist_init(&global_alist); /* Init the argument list to empty. */ + global_alist.id = 0; /* * Set the default values for the options. |