Scale back global variables

Some of the global variables were either not used anymore or only used
in the listing code.
master
Dan Nicholson 2009-04-16 20:01:13 -07:00
parent 9520ea0eb3
commit 5983a4e69d
2 changed files with 3 additions and 5 deletions

View File

@ -144,6 +144,9 @@ static char **mapOnly;
static Listing *list = NULL;
static unsigned verboseLevel;
static unsigned dirsToStrip;
/***====================================================================***/
int

View File

@ -113,7 +113,6 @@ typedef struct _ParseCommon
#define CreateKeyNames(x) ((x)->flags&AutoKeyNames)
extern unsigned warningLevel;
extern unsigned optionalParts;
typedef struct _IncludeStmt
{
@ -367,10 +366,6 @@ CompileSymbols(XkbFile *file, XkbcDescPtr xkb, unsigned merge);
#define WantFullNames (1<<3)
#define ListRecursive (1<<4)
extern char *rootDir;
extern unsigned verboseLevel;
extern unsigned dirsToStrip;
extern Bool AddListing(char * /* file */ ,
char * /* map */
);