From 431daa97eb571282cdbc9c787098ad17f811e924 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 13 Dec 2019 12:09:32 +1100 Subject: Implement DynamicLibrary on Cocoa. --- doc/ScintillaDoc.html | 7 ++++--- doc/ScintillaHistory.html | 11 +++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index d77536e5b..fa75790eb 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -6857,9 +6857,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.

-

Scintilla also supports external lexers. These are DLLs (on Windows) or .so modules (on GTK/Linux) that export three +

Scintilla also supports external lexers. These are DLLs (on Windows), .dylib modules (on macOS), + or .so modules (on GTK/Linux) that export three functions: GetLexerCount, GetLexerName, and - GetLexerFactory. See externalLexer.cxx for more.

+ GetLexerFactory. See ExternalLexer.cxx for more information.

SCI_SETLEXER(int lexer)
SCI_GETLEXER → int
SCI_SETLEXERLANGUAGE(<unused>, const char @@ -6922,7 +6923,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){

SCI_GETLEXERLANGUAGE retrieves the name of the lexer.

SCI_LOADLEXERLIBRARY(<unused>, const char *path)
- 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.

SCI_COLOURISE(position start, position end)
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 27c6f70c7..9f729fb45 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -559,6 +559,17 @@ Icons
Copyright(C) 1998 by Dean S. Jones
+

+ Release 4.3.0 +

+

Release 4.2.3

-- cgit v1.2.3