Improved false quote detection
This commit is contained in:
@@ -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); }
|
||||
|
Reference in New Issue
Block a user