comparison src/eval.c @ 856:8cd729851562 v7.0g

updated for version 7.0g
author vimboss
date Sun, 30 Apr 2006 18:54:39 +0000
parents d2a4f08396fe
children ca82de29ac19
comparison
equal deleted inserted replaced
855:d2a4f08396fe 856:8cd729851562
196 /* 196 /*
197 * All user-defined functions are found in this hashtable. 197 * All user-defined functions are found in this hashtable.
198 */ 198 */
199 static hashtab_T func_hashtab; 199 static hashtab_T func_hashtab;
200 200
201 /* The names of packages that once were loaded is remembered. */ 201 /* The names of packages that once were loaded are remembered. */
202 static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL}; 202 static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL};
203 203
204 /* list heads for garbage collection */ 204 /* list heads for garbage collection */
205 static dict_T *first_dict = NULL; /* list of all dicts */ 205 static dict_T *first_dict = NULL; /* list of all dicts */
206 static list_T *first_list = NULL; /* list of all lists */ 206 static list_T *first_list = NULL; /* list of all lists */