Merge latest changes from official SynEdit repository. Fixes slow highlighter when TableNames contains several 1000's of strings. Removes limitation to 1000 table names for highlighting. See

* http://www.heidisql.com/forum.php?t=16307
* https://github.com/SynEdit/SynEdit/issues/28
This commit is contained in:
Ansgar Becker
2016-08-15 18:07:05 +00:00
parent 55342752b6
commit 7d7b78fcf3
17 changed files with 77 additions and 11 deletions

View File

@ -224,14 +224,13 @@ const
);
// List of non-keyword identifiers
NONKEYWORDCOUNT = 66;
NONKEYWORDCOUNT = 65;
NONKEYWORDS: array [1..NONKEYWORDCOUNT] of UnicodeString =
(
'__future__',
'__import__',
'abs',
'apply',
'as',
'buffer',
'callable',
'chr',