diff options
author | 2021-04-13 00:02:12 -0400 | |
---|---|---|
committer | 2021-04-13 00:02:12 -0400 | |
commit | 3d69ae01c0f2421a89b862ec5fea635a40826896 (patch) | |
tree | 0930132b4c69c144538340b48b7c52accc639b61 /test | |
parent | 19899b518f18165b1dfb6d9b4b18e531f4b56249 (diff) | |
download | textadept-3d69ae01c0f2421a89b862ec5fea635a40826896.tar.gz textadept-3d69ae01c0f2421a89b862ec5fea635a40826896.zip |
Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm.
Some of the Scintilla API has changed, and by extension the Scintillua API.
Diffstat (limited to 'test')
-rw-r--r-- | test/test.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.lua b/test/test.lua index cc3458b6..aab38934 100644 --- a/test/test.lua +++ b/test/test.lua @@ -2279,7 +2279,7 @@ end function test_file_types_load_lexers() local lexers = {} - for name in buffer:private_lexer_call(_SCINTILLA.functions.property_names[1]):gmatch('[^\n]+') do + for name in buffer:private_lexer_call(_SCINTILLA.properties.lexer_language[1]):gmatch('[^\n]+') do lexers[#lexers + 1] = name end print('Loading lexers...') |