diff --git a/include/SciLexer.h b/include/SciLexer.h index 7bdf6900..09e1a8d3 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -1,19 +1,20 @@ /* Scintilla source code edit control */ /** @file SciLexer.h - ** Interface to the added lexer functions in the SciLexer version of the edit control. + ** Interface to the lexer functions in Lexilla. + ** File called SciLexer.h ro retain compatibility with client code. **/ /* Copyright 1998-2002 by Neil Hodgson * The License.txt file describes the conditions under which this software may be distributed. */ -/* Most of this file is automatically generated from the Scintilla.iface interface definition - * file which contains any comments about the definitions. HFacer.py does the generation. */ +/* Most of this file is automatically generated from the LexicalStyles.iface interface definition + * file. LexFacer.py does the generation. */ #ifndef SCILEXER_H #define SCILEXER_H -/* SciLexer features - not in standard Scintilla */ +/* Lexilla features */ -/* ++Autogenerated -- start of section automatically generated from Scintilla.iface */ +/* ++Autogenerated -- start of section automatically generated from LexicalStyles.iface */ #define SCLEX_CONTAINER 0 #define SCLEX_NULL 1 #define SCLEX_PYTHON 2 @@ -2188,6 +2189,6 @@ #define SCE_NIX_KEYWORD3 14 #define SCE_NIX_KEYWORD4 15 #define SCE_NIX_STRINGEOL 16 -/* --Autogenerated -- end of section automatically generated from Scintilla.iface */ +/* --Autogenerated -- end of section automatically generated from LexicalStyles.iface */ #endif diff --git a/scripts/LexFacer.py b/scripts/LexFacer.py index 4b4f7dec..36f7ca69 100644 --- a/scripts/LexFacer.py +++ b/scripts/LexFacer.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# LexFacer.py - regenerate the SciLexer.h files from the Scintilla.iface interface +# LexFacer.py - regenerate the SciLexer.h files from the LexicalStyles.iface interface # definition file. # Implemented 2000 by Neil Hodgson neilh@scintilla.org # Requires Python 3.6 or later