0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0078

This commit is contained in:
Bram Moolenaar
2005-06-01 21:51:55 +00:00
parent 2c29beed4c
commit d6f676daaf
8 changed files with 24 additions and 14 deletions

View File

@@ -6753,12 +6753,12 @@ typedef struct AutoPatCmd
struct AutoPatCmd *next; /* chain of active apc-s for auto-invalidation*/
} AutoPatCmd;
AutoPatCmd *active_apc_list = NULL; /* stack of active autocommands */
static AutoPatCmd *active_apc_list = NULL; /* stack of active autocommands */
/*
* augroups stores a list of autocmd group names.
*/
garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL};
static garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL};
#define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i])
/*