diff src/structs.h @ 5942:66eead134d68 v7.4.312

updated for version 7.4.312 Problem: Cannot figure out what argument list is being used for a window. Solution: Add the arglistid() function. (Marcin Szamotulski)
author Bram Moolenaar <bram@vim.org>
date Wed, 28 May 2014 18:22:57 +0200
parents 662ae48e7e24
children f9fa2e506b9f
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -675,6 +675,7 @@ typedef struct arglist
 {
     garray_T	al_ga;		/* growarray with the array of file names */
     int		al_refcount;	/* number of windows using this arglist */
+    int		id;		/* id of this arglist */
 } alist_T;
 
 /*