* Update Scintilla to version 5.1.1 A few notes: - C++17 is required Not exactly new since we already imported the latest julia lexer. - upstream split out lexers into a lexilla library We do "comply" by building a separate static library. So in effect, all lexers are built-in like before. In the future it may be possible to add lexer plugins at runtime. - Lexer IDs are deprecated in favor of names For now we use LexerNameFromID() to map IDs to names but we should transition to names soon. That being said, the upstream transition seems also not complete. There is no name-based version of SCI_GETLEXER, so we're stuck with IDs there. Closes #2824 * Update scintilla_changes.patch The "which lexers" part is now a separate function that should be less of a pain when updating to scintilla version that adds lexers. * Update update-scintilla.sh You need to extract lexilla sources too now and pass it to the script. Also the script calls dos2unix for the files, kill that CRLF!
20 lines
864 B
Plaintext
20 lines
864 B
Plaintext
License for Lexilla, Scintilla, and SciTE
|
|
|
|
Copyright 1998-2021 by Neil Hodgson <neilh@scintilla.org>
|
|
|
|
All Rights Reserved
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
documentation for any purpose and without fee is hereby granted,
|
|
provided that the above copyright notice appear in all copies and that
|
|
both that copyright notice and this permission notice appear in
|
|
supporting documentation.
|
|
|
|
NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY
|
|
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
|
|
OR PERFORMANCE OF THIS SOFTWARE. |