lregex: replace regexBroken with regexAvailable

This commit is contained in:
Jiří Techet 2016-10-12 13:26:39 +02:00
parent 59d6375b09
commit ca1622412f

View File

@ -35,6 +35,8 @@
#include "read.h" #include "read.h"
#include "routines.h" #include "routines.h"
static bool regexAvailable = true;
/* /*
* MACROS * MACROS
*/ */
@ -75,8 +77,6 @@ typedef struct {
* DATA DEFINITIONS * DATA DEFINITIONS
*/ */
static bool regexBroken = false;
/* Array of pattern sets, indexed by language */ /* Array of pattern sets, indexed by language */
static patternSet* Sets = NULL; static patternSet* Sets = NULL;
static int SetUpper = -1; /* upper language index in list */ static int SetUpper = -1; /* upper language index in list */
@ -526,7 +526,7 @@ extern void addTagRegex (
{ {
Assert (regex != NULL); Assert (regex != NULL);
Assert (name != NULL); Assert (name != NULL);
if (! regexBroken) if (regexAvailable)
{ {
GRegex* const cp = compileRegex (regex, flags); GRegex* const cp = compileRegex (regex, flags);
if (cp != NULL) if (cp != NULL)
@ -548,7 +548,7 @@ extern void addCallbackRegex (
const regexCallback callback CTAGS_ATTR_UNUSED) const regexCallback callback CTAGS_ATTR_UNUSED)
{ {
Assert (regex != NULL); Assert (regex != NULL);
if (! regexBroken) if (regexAvailable)
{ {
GRegex* const cp = compileRegex (regex, flags); GRegex* const cp = compileRegex (regex, flags);
if (cp != NULL) if (cp != NULL)
@ -559,7 +559,7 @@ extern void addCallbackRegex (
extern void addLanguageRegex ( extern void addLanguageRegex (
const langType language CTAGS_ATTR_UNUSED, const char* const regex CTAGS_ATTR_UNUSED) const langType language CTAGS_ATTR_UNUSED, const char* const regex CTAGS_ATTR_UNUSED)
{ {
if (! regexBroken) if (regexAvailable)
{ {
char *const regex_pat = eStrdup (regex); char *const regex_pat = eStrdup (regex);
char *name, *kinds, *flags; char *name, *kinds, *flags;