diff options
Diffstat (limited to 'lexers/LexForth.cxx')
-rw-r--r-- | lexers/LexForth.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lexers/LexForth.cxx b/lexers/LexForth.cxx index 63d3f4f6d..80842097d 100644 --- a/lexers/LexForth.cxx +++ b/lexers/LexForth.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordStart(int ch) { return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.'); |