diff options
| author | mitchell <unknown> | 2020-06-19 08:40:49 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2020-06-19 08:40:49 -0400 |
| commit | ee0e98b74c7e7c64fb9079cd0bacd4c3e840c3b0 (patch) | |
| tree | 9c3c74b739dfdfaa36dfcb6df613c48fbbf00de5 /doc/ScintillaDoc.html | |
| parent | 6822a42fc6e0d25fe583d8d0fac80946c30bd8ca (diff) | |
| download | scintilla-mirror-ee0e98b74c7e7c64fb9079cd0bacd4c3e840c3b0.tar.gz | |
Reverted experimental Lexilla and SCI_SETILEXER support.
When testing, it works when compiled with debug symbols enabled, but crashes
without them. It doesn't seem worth maintaining.
Diffstat (limited to 'doc/ScintillaDoc.html')
| -rw-r--r-- | doc/ScintillaDoc.html | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 3848140d6..ece36a4e2 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -6952,8 +6952,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <a class="message" href="#SCI_SETLEXERLANGUAGE">SCI_SETLEXERLANGUAGE(<unused>, const char *language)</a><br /> <a class="message" href="#SCI_GETLEXERLANGUAGE">SCI_GETLEXERLANGUAGE(<unused>, char *language) → int</a><br /> - <a class="message" href="#SCI_SETILEXER">SCI_SETILEXER(bool iLexer5, pointer lexer)</a><br /> - <a class="message" href="#SCI_LOADLEXERLIBRARY">SCI_LOADLEXERLIBRARY(bool iLexer5, const char + <a class="message" href="#SCI_LOADLEXERLIBRARY">SCI_LOADLEXERLIBRARY(<unused>, const char *path)</a><br /> <a class="message" href="#SCI_COLOURISE">SCI_COLOURISE(position start, position end)</a><br /> <a class="message" href="#SCI_CHANGELEXERSTATE">SCI_CHANGELEXERSTATE(position start, position end) → int</a><br /> @@ -7003,27 +7002,15 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <code>Lex*.cxx</code> file and search for <code>LexerModule</code>. The third argument in the <code>LexerModule</code> constructor is the name to use.</p> - <p class="provisional"><b id="SCI_SETILEXER">SCI_SETILEXER(bool iLexer5, pointer lexer)</b><br /> - <code>SCI_SETILEXER</code> allows setting a lexer as an <code>ILexer*</code>. - The lexer may be implemented by an application or a shared library such as Lexilla. - <code>iLexer5</code> indicates whether or not the library contains Scintilla lexers that implement - the ILexer5 interface defined in Scintilla 4.3+ (e.g. Lexilla). The default is to assume lexers - implement the ILexer interface defined in Scintilla 3.x. This flag must be set explicitly and - cannot be inferred.</p> - <p>To test if your lexer assignment worked, use <a class="message" href="#SCI_GETLEXER"><code>SCI_GETLEXER</code></a> before and after setting the new lexer to see if the lexer number changed.</p> <p><code>SCI_GETLEXERLANGUAGE</code> retrieves the name of the lexer.</p> - <p><b id="SCI_LOADLEXERLIBRARY">SCI_LOADLEXERLIBRARY(bool iLexer5, const char *path)</b><br /> + <p><b id="SCI_LOADLEXERLIBRARY">SCI_LOADLEXERLIBRARY(<unused>, const char *path)</b><br /> Load a lexer implemented in a shared library. This is a .so file on GTK/Linux, a .dylib file on macOS, or a .DLL file on Windows. - <code>iLexer5</code> indicates whether or not the library contains Scintilla lexers that implement - the ILexer5 interface defined in Scintilla 4.3+ (e.g. Lexilla). The default is to assume lexers - implement the ILexer interface defined in Scintilla 3.x. This flag must be set explicitly and - cannot be inferred. - </p> + </p> <p><b id="SCI_COLOURISE">SCI_COLOURISE(position start, position end)</b><br /> This requests the current lexer or the container (if the lexer is set to |
