diff src/fileio.c @ 297:9a1c2a8186b7

updated for version 7.0078
author vimboss
date Wed, 01 Jun 2005 21:51:55 +0000
parents bf6ee000a80c
children 006e9c8a6a8a
line wrap: on
line diff
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -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])
 
 /*