diff options
Diffstat (limited to 'lexers/LexNsis.cxx')
-rw-r--r-- | lexers/LexNsis.cxx | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/lexers/LexNsis.cxx b/lexers/LexNsis.cxx index 43ddc4706..820a5d126 100644 --- a/lexers/LexNsis.cxx +++ b/lexers/LexNsis.cxx @@ -5,21 +5,26 @@ // Copyright 2003 - 2005 by Angelo Mandato <angelo [at] spaceblue [dot] com> // Last Updated: 03/13/2005 // The License.txt file describes the conditions under which this software may be distributed. + #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 "CharClassify.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 |