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