Catalogue.cxx (8af74909132ed5e696cb05b6689ae4baf14c1c96) | Catalogue.cxx (61ef93ee18b51a83cdb07217a9fbaf099a57c9d2) |
---|---|
1// Scintilla source code edit control 2/** @file Catalogue.cxx 3 ** Lexer infrastructure. 4 ** Contains a list of LexerModules which can be searched to find a module appropriate for a 5 ** particular language. 6 **/ 7// Copyright 1998-2002 by Neil Hodgson <[email protected]> 8// The License.txt file describes the conditions under which this software may be distributed. --- 47 unchanged lines hidden (view full) --- 56#if !defined(SCI_EMPTYCATALOGUE) 57 58// Shorten the code that declares a lexer and ensures it is linked in by calling a method. 59#define LINK_LEXER(lexer) extern LexerModule lexer; catalogueDefault.AddLexerModule(&lexer); 60 61//++Autogenerated -- run scripts/LexGen.py to regenerate 62//**\(\tLINK_LEXER(\*);\n\) 63 LINK_LEXER(lmNull); | 1// Scintilla source code edit control 2/** @file Catalogue.cxx 3 ** Lexer infrastructure. 4 ** Contains a list of LexerModules which can be searched to find a module appropriate for a 5 ** particular language. 6 **/ 7// Copyright 1998-2002 by Neil Hodgson <[email protected]> 8// The License.txt file describes the conditions under which this software may be distributed. --- 47 unchanged lines hidden (view full) --- 56#if !defined(SCI_EMPTYCATALOGUE) 57 58// Shorten the code that declares a lexer and ensures it is linked in by calling a method. 59#define LINK_LEXER(lexer) extern LexerModule lexer; catalogueDefault.AddLexerModule(&lexer); 60 61//++Autogenerated -- run scripts/LexGen.py to regenerate 62//**\(\tLINK_LEXER(\*);\n\) 63 LINK_LEXER(lmNull); |
64 LINK_LEXER(lmLyric); |
|
64 65//--Autogenerated -- end of automatically generated section 66 67#endif 68 69 return 1; 70} | 65 66//--Autogenerated -- end of automatically generated section 67 68#endif 69 70 return 1; 71} |