diff options
Diffstat (limited to 'lexers/LexConf.cxx')
-rw-r--r-- | lexers/LexConf.cxx | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/lexers/LexConf.cxx b/lexers/LexConf.cxx index 7b066af7b..114bd7d12 100644 --- a/lexers/LexConf.cxx +++ b/lexers/LexConf.cxx @@ -11,18 +11,23 @@ #include <stdlib.h> #include <string.h> -#include <ctype.h> #include <stdio.h> #include <stdarg.h> +#include <assert.h> +#include <ctype.h> -#include "Platform.h" - -#include "PropSet.h" -#include "Accessor.h" -#include "KeyWords.h" +#include "ILexer.h" #include "Scintilla.h" #include "SciLexer.h" +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" + #ifdef SCI_NAMESPACE using namespace Scintilla; #endif |