summaryrefslogtreecommitdiff
path: root/colm/parsetree.h
diff options
context:
space:
mode:
Diffstat (limited to 'colm/parsetree.h')
-rw-r--r--colm/parsetree.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/colm/parsetree.h b/colm/parsetree.h
index 2d39b4ee..fa0e5ab7 100644
--- a/colm/parsetree.h
+++ b/colm/parsetree.h
@@ -398,7 +398,7 @@ struct TokenDef
longestMatchId(longestMatchId), inLmSelect(false),
nspace(nspace), tokenRegion(tokenRegion), objectDef(objectDef),
contextIn(contextIn),
- dupOf(0), postNoIgnore(false), preNoIgnore(false)
+ dupOf(0), noPostIgnore(false), noPreIgnore(false)
{
if ( pReCaptureVect != 0 )
reCaptureVect = *pReCaptureVect;
@@ -429,8 +429,8 @@ struct TokenDef
Context *contextIn;
TokenDef *dupOf;
- bool postNoIgnore;
- bool preNoIgnore;
+ bool noPostIgnore;
+ bool noPreIgnore;
};
struct LelDefList;