diff options
| author | Rider Linden <rider@lindenlab.com> | 2026-05-05 15:51:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-05 15:51:49 -0700 |
| commit | bbce410f87643d8bdd2870aa74fe208a74766dfb (patch) | |
| tree | 13e05998311f4124bbfe19e363d16a18e2613591 /indra/newview/llscripteditor.cpp | |
| parent | 65b9b2cb5cde2c344da51a7b677c1b99591d8ad3 (diff) | |
| parent | a453db20bb49193806fb0cafeb4d50db4a16abe4 (diff) | |
Merge pull request #5739 from secondlife/rider/defs_cap
Get pregenerated config files from the simulator cap and make them available through the websocket.
Diffstat (limited to 'indra/newview/llscripteditor.cpp')
| -rw-r--r-- | indra/newview/llscripteditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llscripteditor.cpp b/indra/newview/llscripteditor.cpp index 2a4c2b9d0b..ac6b81f677 100644 --- a/indra/newview/llscripteditor.cpp +++ b/indra/newview/llscripteditor.cpp @@ -342,8 +342,8 @@ void LLScriptEditor::drawLineNumbers() void LLScriptEditor::initKeywords(bool luau_language) { - mKeywordsLua.initialize(LLSyntaxLua::getInstance()->getKeywordsXML(), true); - mKeywordsLSL.initialize(LLSyntaxIdLSL::getInstance()->getKeywordsXML(), false); + mKeywordsLua.initialize(LLSyntaxDefCache::getInstance()->getLuaKeywords(), true); + mKeywordsLSL.initialize(LLSyntaxDefCache::getInstance()->getLSLKeywords(), false); mLuauLanguage = luau_language; |
