diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-05-28 18:22:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-05-28 18:22:57 +0200 |
commit | 2d1fe05fc06a91886635680886c200ad90f0abd7 (patch) | |
tree | 16faee30e75a2fd0156634661b452e813877e2bd /src/globals.h | |
parent | 82c2585eb840a84240ef927c09df28d5a04302b1 (diff) | |
download | vim-git-2d1fe05fc06a91886635680886c200ad90f0abd7.tar.gz |
updated for version 7.4.312v7.4.312
Problem: Cannot figure out what argument list is being used for a window.
Solution: Add the arglistid() function. (Marcin Szamotulski)
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index 058341b11..d831db9f8 100644 --- a/src/globals.h +++ b/src/globals.h @@ -601,6 +601,7 @@ EXTERN int mf_dont_release INIT(= FALSE); /* don't release blocks */ * to this when the window is using the global argument list. */ EXTERN alist_T global_alist; /* global argument list */ +EXTERN int max_alist_id INIT(= 0); /* the previous argument list id */ EXTERN int arg_had_last INIT(= FALSE); /* accessed last file in global_alist */ |