Improved false quote detection

This commit is contained in:
Ianos Gnatiuc
2005-10-27 23:41:58 +00:00
parent f43822b1c2
commit 4057aba5d0
6 changed files with 25 additions and 5 deletions

View File

@@ -81,7 +81,8 @@ const uint GLINE_POSI = 0x0100;
const uint GLINE_HIGH = 0x0200;
const uint GLINE_TAGL = 0x0400;
const uint GLINE_SIGN = 0x0800;
const uint GLINE_NOAL = 0x1000; // text is not allocated
const uint GLINE_TXTH = 0x1000; // text is hiden
const uint GLINE_NOAL = 0x2000; // text is not allocated
const uint GLINE_KLUDGE = GLINE_HIDD | GLINE_KLUD;
const uint GLINE_ALL = GLINE_HIDD | GLINE_KLUD | GLINE_QUOT;
@@ -162,6 +163,7 @@ public:
int isposition() { return !!(type & GLINE_POSI); }
int ishighlighted() { return !!(type & GLINE_HIGH); }
int istagline() { return !!(type & GLINE_TAGL); }
int istxthidden() { return !!(type & GLINE_TXTH); }
int isheader() { return !!kludge; }
int isallocated() { return !(type & GLINE_NOAL); }