aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexRebol.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lexers/LexRebol.cxx')
-rw-r--r--lexers/LexRebol.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/lexers/LexRebol.cxx b/lexers/LexRebol.cxx
index bce93dfc8..d4973c0c8 100644
--- a/lexers/LexRebol.cxx
+++ b/lexers/LexRebol.cxx
@@ -29,9 +29,7 @@
#include "CharacterSet.h"
#include "LexerModule.h"
-#ifdef SCI_NAMESPACE
using namespace Scintilla;
-#endif
static inline bool IsAWordChar(const int ch) {
return (isalnum(ch) || ch == '?' || ch == '!' || ch == '.' || ch == '\'' || ch == '+' || ch == '-' || ch == '*' || ch == '&' || ch == '|' || ch == '=' || ch == '_' || ch == '~');