Specify the correct file names in comments to match splitting Lexilla from Scintilla.

This commit is contained in:
Neil Hodgson
2025-09-27 11:31:34 +10:00
parent d8d5ef9492
commit fdb2808267
2 changed files with 8 additions and 7 deletions

View File

@@ -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 <neilh@scintilla.org>
* 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

View File

@@ -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