diff options
| author | mitchell <unknown> | 2018-03-15 11:22:20 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2018-03-15 11:22:20 -0400 |
| commit | 1673612fe9c9f31217ec24fe1211d8d020c4d478 (patch) | |
| tree | 1e283c67cf3cde01d33b746cf8986ba03df47e12 | |
| parent | d3c03f65fe25e133b8ef8a5f67b675b434605305 (diff) | |
| download | scintilla-mirror-1673612fe9c9f31217ec24fe1211d8d020c4d478.tar.gz | |
Use active Scintilla namespace in LPeg lexer.
| -rw-r--r-- | lexers/LexLPeg.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lexers/LexLPeg.cxx b/lexers/LexLPeg.cxx index 9a44a3cdd..f0cd0812f 100644 --- a/lexers/LexLPeg.cxx +++ b/lexers/LexLPeg.cxx @@ -37,9 +37,7 @@ LUALIB_API int luaopen_lpeg(lua_State *L); #endif #define streq(s1, s2) (strcasecmp((s1), (s2)) == 0) -#if SCI_NAMESPACE using namespace Scintilla; -#endif #define l_setmetatable(l, k, mtf) \ if (luaL_newmetatable(l, k)) { \ @@ -781,9 +779,7 @@ LexerModule lmLPeg(SCLEX_LPEG, LexerLPeg::LexerFactoryLPeg, "lpeg"); #include "Accessor.h" #include "LexerModule.h" -#if SCI_NAMESPACE using namespace Scintilla; -#endif static void LPegLex(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, WordList *keywordlists[], Accessor &styler) { |
