aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-12-13 12:09:32 +1100
committerNeil <nyamatongwe@gmail.com>2019-12-13 12:09:32 +1100
commit8eb134dbbd44002f3acd90d91550875f161136fa (patch)
treef7384a0c7cd1c4cbc4f909afdba7a769b967d9b6 /doc/ScintillaDoc.html
parentc22da1b953a641c5f420d3d4ca9093a2f74d209a (diff)
downloadscintilla-mirror-8eb134dbbd44002f3acd90d91550875f161136fa.tar.gz
Backport: Implement DynamicLibrary on Cocoa.
Backport of changeset 7865:a5c2f8a3f171.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 3efb7257f..fa247b35e 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -6830,9 +6830,10 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
styling and fold points for an unsupported language you can either do this in the container or
better still, write your own lexer following the pattern of one of the existing ones.</p>
- <p>Scintilla also supports external lexers. These are DLLs (on Windows) or .so modules (on GTK/Linux) that export three
+ <p>Scintilla also supports external lexers. These are DLLs (on Windows), .dylib modules (on macOS),
+ or .so modules (on GTK/Linux) that export three
functions: <code>GetLexerCount</code>, <code>GetLexerName</code>, and
- <code>GetLexerFactory</code>. See <code>externalLexer.cxx</code> for more.</p>
+ <code>GetLexerFactory</code>. See <code>ExternalLexer.cxx</code> for more information.</p>
<a class="message" href="#SCI_SETLEXER">SCI_SETLEXER(int lexer)</a><br />
<a class="message" href="#SCI_GETLEXER">SCI_GETLEXER &rarr; int</a><br />
<a class="message" href="#SCI_SETLEXERLANGUAGE">SCI_SETLEXERLANGUAGE(&lt;unused&gt;, const char
@@ -6895,7 +6896,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
<p><code>SCI_GETLEXERLANGUAGE</code> retrieves the name of the lexer.</p>
<p><b id="SCI_LOADLEXERLIBRARY">SCI_LOADLEXERLIBRARY(&lt;unused&gt;, const char *path)</b><br />
- Load a lexer implemented in a shared library. This is a .so file on GTK/Linux or a .DLL file on Windows.
+ 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.
</p>
<p><b id="SCI_COLOURISE">SCI_COLOURISE(position start, position end)</b><br />