diff options
Diffstat (limited to 'lexers/LexSpice.cxx')
-rw-r--r-- | lexers/LexSpice.cxx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lexers/LexSpice.cxx b/lexers/LexSpice.cxx index 6aa2e8fdc..7c7b77c77 100644 --- a/lexers/LexSpice.cxx +++ b/lexers/LexSpice.cxx @@ -6,19 +6,24 @@ // The License.txt file describes the conditions under which this software may be distributed. #include <stdlib.h> -#include <ctype.h> #include <string.h> #include <stdio.h> +#include <stdarg.h> +#include <assert.h> #include <string> -#include "Platform.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 "PropSet.h" -#include "KeyWords.h" -#include "SciLexer.h" +#include "CharacterSet.h" +#include "LexerModule.h" #ifdef SCI_NAMESPACE using namespace Scintilla; |