aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormitchell <70453897+orbitalquark@users.noreply.github.com>2021-04-13 00:02:12 -0400
committermitchell <70453897+orbitalquark@users.noreply.github.com>2021-04-13 00:02:12 -0400
commit3d69ae01c0f2421a89b862ec5fea635a40826896 (patch)
tree0930132b4c69c144538340b48b7c52accc639b61 /test
parent19899b518f18165b1dfb6d9b4b18e531f4b56249 (diff)
downloadtextadept-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.lua2
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...')