diff options
Diffstat (limited to 'lexers')
105 files changed, 0 insertions, 210 deletions
diff --git a/lexers/LexA68k.cxx b/lexers/LexA68k.cxx index b5f48987e..1475ad078 100644 --- a/lexers/LexA68k.cxx +++ b/lexers/LexA68k.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Return values for GetOperatorType diff --git a/lexers/LexAPDL.cxx b/lexers/LexAPDL.cxx index 873ec9d13..447e40d58 100644 --- a/lexers/LexAPDL.cxx +++ b/lexers/LexAPDL.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 == '_')); diff --git a/lexers/LexASY.cxx b/lexers/LexASY.cxx index b49975e70..3ec522729 100644 --- a/lexers/LexASY.cxx +++ b/lexers/LexASY.cxx @@ -19,9 +19,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseAsyDoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], Accessor &styler) { diff --git a/lexers/LexAU3.cxx b/lexers/LexAU3.cxx index c8ab9d700..b4029413c 100644 --- a/lexers/LexAU3.cxx +++ b/lexers/LexAU3.cxx @@ -68,9 +68,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsTypeCharacter(const int ch) { diff --git a/lexers/LexAVE.cxx b/lexers/LexAVE.cxx index fd9927379..b976734ae 100644 --- a/lexers/LexAVE.cxx +++ b/lexers/LexAVE.cxx @@ -25,9 +25,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(const int ch) { diff --git a/lexers/LexAVS.cxx b/lexers/LexAVS.cxx index 129c3563b..df5223f8d 100644 --- a/lexers/LexAVS.cxx +++ b/lexers/LexAVS.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 == '_'); diff --git a/lexers/LexAbaqus.cxx b/lexers/LexAbaqus.cxx index 5f265c722..96a7b886e 100644 --- a/lexers/LexAbaqus.cxx +++ b/lexers/LexAbaqus.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAKeywordChar(const int ch) { return (ch < 0x80 && (isalnum(ch) || (ch == '_') || (ch == ' '))); diff --git a/lexers/LexAda.cxx b/lexers/LexAda.cxx index df26d7578..9d7f5d0f7 100644 --- a/lexers/LexAda.cxx +++ b/lexers/LexAda.cxx @@ -25,9 +25,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /* * Interface diff --git a/lexers/LexAsm.cxx b/lexers/LexAsm.cxx index d236ed657..f34c8b50c 100644 --- a/lexers/LexAsm.cxx +++ b/lexers/LexAsm.cxx @@ -32,9 +32,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(const int ch) { return (ch < 0x80) && (isalnum(ch) || ch == '.' || diff --git a/lexers/LexAsn1.cxx b/lexers/LexAsn1.cxx index 7c5f48e75..0ec2a0636 100644 --- a/lexers/LexAsn1.cxx +++ b/lexers/LexAsn1.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Some char test functions static bool isAsn1Number(int ch) diff --git a/lexers/LexBaan.cxx b/lexers/LexBaan.cxx index 7d98f5ef3..0de335105 100644 --- a/lexers/LexBaan.cxx +++ b/lexers/LexBaan.cxx @@ -36,9 +36,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -# ifdef SCI_NAMESPACE using namespace Scintilla; -# endif namespace { // Use an unnamed namespace to protect the functions and classes from name conflicts diff --git a/lexers/LexBash.cxx b/lexers/LexBash.cxx index 9c02c2897..931d1bf47 100644 --- a/lexers/LexBash.cxx +++ b/lexers/LexBash.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #define HERE_DELIM_MAX 256 diff --git a/lexers/LexBasic.cxx b/lexers/LexBasic.cxx index 68e4c8574..3998af93b 100644 --- a/lexers/LexBasic.cxx +++ b/lexers/LexBasic.cxx @@ -39,9 +39,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /* Bits: * 1 - whitespace diff --git a/lexers/LexBatch.cxx b/lexers/LexBatch.cxx index 377b2cbf1..db7e37688 100644 --- a/lexers/LexBatch.cxx +++ b/lexers/LexBatch.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static bool Is0To9(char ch) { return (ch >= '0') && (ch <= '9'); diff --git a/lexers/LexBibTeX.cxx b/lexers/LexBibTeX.cxx index fef58a9b0..7e4cb9fc1 100644 --- a/lexers/LexBibTeX.cxx +++ b/lexers/LexBibTeX.cxx @@ -30,9 +30,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif namespace { bool IsAlphabetic(unsigned int ch) diff --git a/lexers/LexBullant.cxx b/lexers/LexBullant.cxx index 404188769..2386d2252 100644 --- a/lexers/LexBullant.cxx +++ b/lexers/LexBullant.cxx @@ -19,9 +19,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static int classifyWordBullant(Sci_PositionU start, Sci_PositionU end, WordList &keywords, Accessor &styler) { char s[100]; diff --git a/lexers/LexCLW.cxx b/lexers/LexCLW.cxx index af2ca151a..d469d6bfd 100644 --- a/lexers/LexCLW.cxx +++ b/lexers/LexCLW.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Is an end of line character inline bool IsEOL(const int ch) { diff --git a/lexers/LexCOBOL.cxx b/lexers/LexCOBOL.cxx index 3150e3338..f0374824f 100644 --- a/lexers/LexCOBOL.cxx +++ b/lexers/LexCOBOL.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #define IN_DIVISION 0x01 #define IN_DECLARATIVES 0x02 diff --git a/lexers/LexCPP.cxx b/lexers/LexCPP.cxx index 840d3c8b9..952410a85 100644 --- a/lexers/LexCPP.cxx +++ b/lexers/LexCPP.cxx @@ -33,9 +33,7 @@ #include "SparseState.h" #include "SubStyles.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif namespace { // Use an unnamed namespace to protect the functions and classes from name conflicts diff --git a/lexers/LexCSS.cxx b/lexers/LexCSS.cxx index 01ca78687..6e4739d3e 100644 --- a/lexers/LexCSS.cxx +++ b/lexers/LexCSS.cxx @@ -31,9 +31,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(const unsigned int ch) { diff --git a/lexers/LexCaml.cxx b/lexers/LexCaml.cxx index cefc1eda2..038068a7b 100644 --- a/lexers/LexCaml.cxx +++ b/lexers/LexCaml.cxx @@ -46,9 +46,7 @@ static const int baseT[24] = { 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0,16 /* M - X */ }; -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #ifdef BUILD_AS_EXTERNAL_LEXER /* diff --git a/lexers/LexCmake.cxx b/lexers/LexCmake.cxx index 1cbca3611..b8fe15496 100644 --- a/lexers/LexCmake.cxx +++ b/lexers/LexCmake.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static bool isCmakeNumber(char ch) { diff --git a/lexers/LexCoffeeScript.cxx b/lexers/LexCoffeeScript.cxx index b835c52ec..465e92ca3 100644 --- a/lexers/LexCoffeeScript.cxx +++ b/lexers/LexCoffeeScript.cxx @@ -28,9 +28,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static bool IsSpaceEquiv(int state) { return (state == SCE_COFFEESCRIPT_DEFAULT diff --git a/lexers/LexConf.cxx b/lexers/LexConf.cxx index 2eed51b71..73fbe46ef 100644 --- a/lexers/LexConf.cxx +++ b/lexers/LexConf.cxx @@ -27,9 +27,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseConfDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *keywordLists[], Accessor &styler) { diff --git a/lexers/LexCrontab.cxx b/lexers/LexCrontab.cxx index b500d2d28..7f6d5fb0c 100644 --- a/lexers/LexCrontab.cxx +++ b/lexers/LexCrontab.cxx @@ -25,9 +25,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseNncrontabDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *keywordLists[], Accessor &styler) diff --git a/lexers/LexCsound.cxx b/lexers/LexCsound.cxx index 6d065c8d1..24603801e 100644 --- a/lexers/LexCsound.cxx +++ b/lexers/LexCsound.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 == '.' || diff --git a/lexers/LexD.cxx b/lexers/LexD.cxx index eb69f6bf9..9465942f5 100644 --- a/lexers/LexD.cxx +++ b/lexers/LexD.cxx @@ -29,9 +29,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /* Nested comments require keeping the value of the nesting level for every position in the document. But since scintilla always styles line by line, diff --git a/lexers/LexDMAP.cxx b/lexers/LexDMAP.cxx index eb43cde6d..91b10c29b 100644 --- a/lexers/LexDMAP.cxx +++ b/lexers/LexDMAP.cxx @@ -25,9 +25,7 @@ #include "LexerModule.h" /***************************************/ -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /***********************************************/ static inline bool IsAWordChar(const int ch) { diff --git a/lexers/LexDMIS.cxx b/lexers/LexDMIS.cxx index 86fdbe32b..ce36ff056 100644 --- a/lexers/LexDMIS.cxx +++ b/lexers/LexDMIS.cxx @@ -23,9 +23,7 @@ #include "LexerModule.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static const char *const DMISWordListDesc[] = { diff --git a/lexers/LexDiff.cxx b/lexers/LexDiff.cxx index 9512550c8..f87538daa 100644 --- a/lexers/LexDiff.cxx +++ b/lexers/LexDiff.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool AtEOL(Accessor &styler, Sci_PositionU i) { return (styler[i] == '\n') || diff --git a/lexers/LexECL.cxx b/lexers/LexECL.cxx index 2e5433e6e..6c916bce4 100644 --- a/lexers/LexECL.cxx +++ b/lexers/LexECL.cxx @@ -42,9 +42,7 @@ #define SET_UPPER "ABCDEFGHIJKLMNOPQRSTUVWXYZ" #define SET_DIGITS "0123456789" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static bool IsSpaceEquiv(int state) { switch (state) { diff --git a/lexers/LexEDIFACT.cxx b/lexers/LexEDIFACT.cxx index b502fd13c..8c7c2cdf2 100644 --- a/lexers/LexEDIFACT.cxx +++ b/lexers/LexEDIFACT.cxx @@ -20,9 +20,7 @@ #include "LexerModule.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif class LexerEDIFACT : public DefaultLexer { diff --git a/lexers/LexEScript.cxx b/lexers/LexEScript.cxx index bc1fb3201..0cba29858 100644 --- a/lexers/LexEScript.cxx +++ b/lexers/LexEScript.cxx @@ -22,9 +22,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(const int ch) { diff --git a/lexers/LexEiffel.cxx b/lexers/LexEiffel.cxx index 2e2813ef6..d1d42a960 100644 --- a/lexers/LexEiffel.cxx +++ b/lexers/LexEiffel.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool isEiffelOperator(unsigned int ch) { // '.' left out as it is used to make up numbers diff --git a/lexers/LexErlang.cxx b/lexers/LexErlang.cxx index 89ed1ae2f..a61c3c91e 100644 --- a/lexers/LexErlang.cxx +++ b/lexers/LexErlang.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static int is_radix(int radix, int ch) { int digit; diff --git a/lexers/LexErrorList.cxx b/lexers/LexErrorList.cxx index 871902a88..a82d0cf7c 100644 --- a/lexers/LexErrorList.cxx +++ b/lexers/LexErrorList.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static bool strstart(const char *haystack, const char *needle) { return strncmp(haystack, needle, strlen(needle)) == 0; diff --git a/lexers/LexFlagship.cxx b/lexers/LexFlagship.cxx index 6f6f4c0c7..b73c1aa1e 100644 --- a/lexers/LexFlagship.cxx +++ b/lexers/LexFlagship.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Extended to accept accented characters static inline bool IsAWordChar(int ch) 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 == '.'); diff --git a/lexers/LexFortran.cxx b/lexers/LexFortran.cxx index fdfb22886..113b0585a 100644 --- a/lexers/LexFortran.cxx +++ b/lexers/LexFortran.cxx @@ -25,9 +25,7 @@ #include "LexerModule.h" /***************************************/ -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /***********************************************/ static inline bool IsAWordChar(const int ch) { diff --git a/lexers/LexGAP.cxx b/lexers/LexGAP.cxx index ee0a7ad69..a2eca95ab 100644 --- a/lexers/LexGAP.cxx +++ b/lexers/LexGAP.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsGAPOperator(char ch) { if (IsASCII(ch) && isalnum(ch)) return false; diff --git a/lexers/LexGui4Cli.cxx b/lexers/LexGui4Cli.cxx index d4be71b92..e321a5b85 100644 --- a/lexers/LexGui4Cli.cxx +++ b/lexers/LexGui4Cli.cxx @@ -39,9 +39,7 @@ val SCE_GC_OPERATOR=9 #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #define debug Platform::DebugPrintf diff --git a/lexers/LexHTML.cxx b/lexers/LexHTML.cxx index c2ca50c11..018da1d4a 100644 --- a/lexers/LexHTML.cxx +++ b/lexers/LexHTML.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #define SCE_HA_JS (SCE_HJA_START - SCE_HJ_START) #define SCE_HA_VBS (SCE_HBA_START - SCE_HB_START) diff --git a/lexers/LexHaskell.cxx b/lexers/LexHaskell.cxx index a7ac82a90..ee8c87e39 100644 --- a/lexers/LexHaskell.cxx +++ b/lexers/LexHaskell.cxx @@ -43,9 +43,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // See https://github.com/ghc/ghc/blob/master/compiler/parser/Lexer.x#L1682 // Note, letter modifiers are prohibited. diff --git a/lexers/LexHex.cxx b/lexers/LexHex.cxx index 449454471..6e1099786 100644 --- a/lexers/LexHex.cxx +++ b/lexers/LexHex.cxx @@ -118,9 +118,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // prototypes for general helper functions static inline bool IsNewline(const int ch); diff --git a/lexers/LexIndent.cxx b/lexers/LexIndent.cxx index ac25938c0..053bdd928 100644 --- a/lexers/LexIndent.cxx +++ b/lexers/LexIndent.cxx @@ -22,9 +22,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseIndentDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) { diff --git a/lexers/LexInno.cxx b/lexers/LexInno.cxx index 50aa25d28..5d01c0588 100644 --- a/lexers/LexInno.cxx +++ b/lexers/LexInno.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseInnoDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *keywordLists[], Accessor &styler) { int state = SCE_INNO_DEFAULT; diff --git a/lexers/LexJSON.cxx b/lexers/LexJSON.cxx index 16b43abf3..8e27bca6d 100644 --- a/lexers/LexJSON.cxx +++ b/lexers/LexJSON.cxx @@ -29,9 +29,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static const char *const JSONWordListDesc[] = { "JSON Keywords", diff --git a/lexers/LexKVIrc.cxx b/lexers/LexKVIrc.cxx index 75cb8331b..0cae2a234 100644 --- a/lexers/LexKVIrc.cxx +++ b/lexers/LexKVIrc.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /* KVIrc Script syntactic rules: http://www.kvirc.net/doc/doc_syntactic_rules.html */ diff --git a/lexers/LexKix.cxx b/lexers/LexKix.cxx index 82ff9a54b..bcd68137e 100644 --- a/lexers/LexKix.cxx +++ b/lexers/LexKix.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Extended to accept accented characters static inline bool IsAWordChar(int ch) { diff --git a/lexers/LexLaTeX.cxx b/lexers/LexLaTeX.cxx index 7af1fde24..63e1f8c62 100644 --- a/lexers/LexLaTeX.cxx +++ b/lexers/LexLaTeX.cxx @@ -29,9 +29,7 @@ #include "DefaultLexer.h" #include "LexerBase.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif using namespace std; diff --git a/lexers/LexLisp.cxx b/lexers/LexLisp.cxx index 8d81eae2e..8e7586355 100644 --- a/lexers/LexLisp.cxx +++ b/lexers/LexLisp.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #define SCE_LISP_CHARACTER 29 #define SCE_LISP_MACRO 30 diff --git a/lexers/LexLout.cxx b/lexers/LexLout.cxx index 39709827d..abba91ad1 100644 --- a/lexers/LexLout.cxx +++ b/lexers/LexLout.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(const int ch) { return (ch < 0x80) && (isalpha(ch) || ch == '@' || ch == '_'); diff --git a/lexers/LexLua.cxx b/lexers/LexLua.cxx index 018521791..b4a18b3ee 100644 --- a/lexers/LexLua.cxx +++ b/lexers/LexLua.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Test for [=[ ... ]=] delimiters, returns 0 if it's only a [ or ], // return 1 for [[ or ]], returns >=2 for [=[ or ]=] and so on. diff --git a/lexers/LexMMIXAL.cxx b/lexers/LexMMIXAL.cxx index 2a152b8a8..025cfcb84 100644 --- a/lexers/LexMMIXAL.cxx +++ b/lexers/LexMMIXAL.cxx @@ -25,9 +25,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(const int ch) { diff --git a/lexers/LexMPT.cxx b/lexers/LexMPT.cxx index 2732fb4d5..0f5469840 100644 --- a/lexers/LexMPT.cxx +++ b/lexers/LexMPT.cxx @@ -27,9 +27,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static int GetLotLineState(std::string &line) { if (line.length()) { diff --git a/lexers/LexMSSQL.cxx b/lexers/LexMSSQL.cxx index fa86db694..a06ff32c3 100644 --- a/lexers/LexMSSQL.cxx +++ b/lexers/LexMSSQL.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #define KW_MSSQL_STATEMENTS 0 #define KW_MSSQL_DATA_TYPES 1 diff --git a/lexers/LexMagik.cxx b/lexers/LexMagik.cxx index 4a2a7b9fb..057b90657 100644 --- a/lexers/LexMagik.cxx +++ b/lexers/LexMagik.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /** * Is it a core character (C isalpha(), exclamation and question mark) diff --git a/lexers/LexMake.cxx b/lexers/LexMake.cxx index 9e8dadf1b..b3dc12aa1 100644 --- a/lexers/LexMake.cxx +++ b/lexers/LexMake.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool AtEOL(Accessor &styler, Sci_PositionU i) { return (styler[i] == '\n') || diff --git a/lexers/LexMarkdown.cxx b/lexers/LexMarkdown.cxx index a1a50f20e..0dc3e374a 100644 --- a/lexers/LexMarkdown.cxx +++ b/lexers/LexMarkdown.cxx @@ -51,9 +51,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsNewline(const int ch) { return (ch == '\n' || ch == '\r'); diff --git a/lexers/LexMatlab.cxx b/lexers/LexMatlab.cxx index 154c755fd..498617ace 100644 --- a/lexers/LexMatlab.cxx +++ b/lexers/LexMatlab.cxx @@ -43,9 +43,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static bool IsMatlabCommentChar(int c) { return (c == '%') ; diff --git a/lexers/LexMetapost.cxx b/lexers/LexMetapost.cxx index cbfe10fa7..315a1eab0 100644 --- a/lexers/LexMetapost.cxx +++ b/lexers/LexMetapost.cxx @@ -30,9 +30,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // val SCE_METAPOST_DEFAULT = 0 // val SCE_METAPOST_SPECIAL = 1 diff --git a/lexers/LexModula.cxx b/lexers/LexModula.cxx index 583cbe38a..af4b8dd1b 100644 --- a/lexers/LexModula.cxx +++ b/lexers/LexModula.cxx @@ -28,9 +28,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif #ifdef DEBUG_LEX_MODULA #define DEBUG_STATE( p, c )\ diff --git a/lexers/LexMySQL.cxx b/lexers/LexMySQL.cxx index 03cf106e6..7ba52a3e2 100644 --- a/lexers/LexMySQL.cxx +++ b/lexers/LexMySQL.cxx @@ -28,9 +28,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(int ch) { return (ch < 0x80) && (isalnum(ch) || ch == '_'); diff --git a/lexers/LexNimrod.cxx b/lexers/LexNimrod.cxx index d232f9f14..5526ff843 100644 --- a/lexers/LexNimrod.cxx +++ b/lexers/LexNimrod.cxx @@ -25,9 +25,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(int ch) { return (ch >= 0x80) || isalnum(ch) || ch == '_'; diff --git a/lexers/LexNsis.cxx b/lexers/LexNsis.cxx index 260834912..3b2b8a3ad 100644 --- a/lexers/LexNsis.cxx +++ b/lexers/LexNsis.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /* // located in SciLexer.h diff --git a/lexers/LexNull.cxx b/lexers/LexNull.cxx index 34876775d..15a3a50aa 100644 --- a/lexers/LexNull.cxx +++ b/lexers/LexNull.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseNullDoc(Sci_PositionU startPos, Sci_Position length, int, WordList *[], Accessor &styler) { diff --git a/lexers/LexOScript.cxx b/lexers/LexOScript.cxx index 24b85b700..3fe407063 100644 --- a/lexers/LexOScript.cxx +++ b/lexers/LexOScript.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // ----------------------------------------- // Functions classifying a single character. diff --git a/lexers/LexOpal.cxx b/lexers/LexOpal.cxx index 955927f63..c23620405 100644 --- a/lexers/LexOpal.cxx +++ b/lexers/LexOpal.cxx @@ -22,9 +22,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif inline static void getRange( Sci_PositionU start, Sci_PositionU end, Accessor & styler, char * s, Sci_PositionU len ) { diff --git a/lexers/LexPB.cxx b/lexers/LexPB.cxx index 49b8509d0..582a5899d 100644 --- a/lexers/LexPB.cxx +++ b/lexers/LexPB.cxx @@ -51,9 +51,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsTypeCharacter(const int ch) { diff --git a/lexers/LexPLM.cxx b/lexers/LexPLM.cxx index e306685d6..9cac8b6cd 100644 --- a/lexers/LexPLM.cxx +++ b/lexers/LexPLM.cxx @@ -20,9 +20,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void GetRange(Sci_PositionU start, Sci_PositionU end, diff --git a/lexers/LexPO.cxx b/lexers/LexPO.cxx index fcf886d6c..875c334f8 100644 --- a/lexers/LexPO.cxx +++ b/lexers/LexPO.cxx @@ -31,9 +31,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColourisePODoc(Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *[], Accessor &styler) { StyleContext sc(startPos, length, initStyle, styler); diff --git a/lexers/LexPOV.cxx b/lexers/LexPOV.cxx index c46744769..40d0d2e9d 100644 --- a/lexers/LexPOV.cxx +++ b/lexers/LexPOV.cxx @@ -32,9 +32,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(int ch) { return ch < 0x80 && (isalnum(ch) || ch == '_'); diff --git a/lexers/LexPS.cxx b/lexers/LexPS.cxx index e4730ca55..b7158e9bb 100644 --- a/lexers/LexPS.cxx +++ b/lexers/LexPS.cxx @@ -30,9 +30,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsASelfDelimitingChar(const int ch) { return (ch == '[' || ch == ']' || ch == '{' || ch == '}' || diff --git a/lexers/LexPascal.cxx b/lexers/LexPascal.cxx index b7213bb87..426b3c3f3 100644 --- a/lexers/LexPascal.cxx +++ b/lexers/LexPascal.cxx @@ -128,9 +128,7 @@ contains requires #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void GetRangeLowered(Sci_PositionU start, Sci_PositionU end, diff --git a/lexers/LexPerl.cxx b/lexers/LexPerl.cxx index 83475df31..1ea6bd589 100644 --- a/lexers/LexPerl.cxx +++ b/lexers/LexPerl.cxx @@ -29,9 +29,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Info for HERE document handling from perldata.pod (reformatted): // ---------------------------------------------------------------- diff --git a/lexers/LexPowerPro.cxx b/lexers/LexPowerPro.cxx index 7120c4003..34debff24 100644 --- a/lexers/LexPowerPro.cxx +++ b/lexers/LexPowerPro.cxx @@ -43,9 +43,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsStreamCommentStyle(int style) { return style == SCE_POWERPRO_COMMENTBLOCK; diff --git a/lexers/LexPowerShell.cxx b/lexers/LexPowerShell.cxx index 0b744c4eb..9969df35d 100644 --- a/lexers/LexPowerShell.cxx +++ b/lexers/LexPowerShell.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Extended to accept accented characters static inline bool IsAWordChar(int ch) { diff --git a/lexers/LexProgress.cxx b/lexers/LexProgress.cxx index e59e98361..53d195f37 100644 --- a/lexers/LexProgress.cxx +++ b/lexers/LexProgress.cxx @@ -40,9 +40,7 @@ Differentiate between labels and variables #include "SparseState.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif namespace { // Use an unnamed namespace to protect the functions and classes from name conflicts diff --git a/lexers/LexProps.cxx b/lexers/LexProps.cxx index ddfecb06f..1aebdbb06 100644 --- a/lexers/LexProps.cxx +++ b/lexers/LexProps.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool AtEOL(Accessor &styler, Sci_PositionU i) { return (styler[i] == '\n') || diff --git a/lexers/LexPython.cxx b/lexers/LexPython.cxx index 0985c6dd4..ee60037fb 100644 --- a/lexers/LexPython.cxx +++ b/lexers/LexPython.cxx @@ -32,9 +32,7 @@ #include "SubStyles.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif namespace { // Use an unnamed namespace to protect the functions and classes from name conflicts 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 == '_'); 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 == '~'); diff --git a/lexers/LexRegistry.cxx b/lexers/LexRegistry.cxx index 3f54df023..779ea2f47 100644 --- a/lexers/LexRegistry.cxx +++ b/lexers/LexRegistry.cxx @@ -29,9 +29,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static const char *const RegistryWordListDesc[] = { 0 diff --git a/lexers/LexRuby.cxx b/lexers/LexRuby.cxx index d990f1b45..2affffe65 100644 --- a/lexers/LexRuby.cxx +++ b/lexers/LexRuby.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif //XXX Identical to Perl, put in common area static inline bool isEOLChar(char ch) { diff --git a/lexers/LexRust.cxx b/lexers/LexRust.cxx index 6f14c3720..ec930e470 100644 --- a/lexers/LexRust.cxx +++ b/lexers/LexRust.cxx @@ -31,9 +31,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static const int NUM_RUST_KEYWORD_LISTS = 7; static const int MAX_RUST_IDENT_CHARS = 1023; diff --git a/lexers/LexSML.cxx b/lexers/LexSML.cxx index 76cfde061..1cb00f91d 100644 --- a/lexers/LexSML.cxx +++ b/lexers/LexSML.cxx @@ -29,9 +29,7 @@ inline int issmlf(int c) {return isalpha(c) || c == '_';} inline int issmld(int c) {return isdigit(c) || c == '_';} -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseSMLDoc( Sci_PositionU startPos, Sci_Position length, diff --git a/lexers/LexSQL.cxx b/lexers/LexSQL.cxx index 447cc20f3..69916b9fb 100644 --- a/lexers/LexSQL.cxx +++ b/lexers/LexSQL.cxx @@ -33,9 +33,7 @@ #include "SparseState.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(int ch, bool sqlAllowDottedWord) { if (!sqlAllowDottedWord) diff --git a/lexers/LexSTTXT.cxx b/lexers/LexSTTXT.cxx index b7ac8f432..dd2fe5465 100644 --- a/lexers/LexSTTXT.cxx +++ b/lexers/LexSTTXT.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ClassifySTTXTWord(WordList *keywordlists[], StyleContext &sc) { diff --git a/lexers/LexScriptol.cxx b/lexers/LexScriptol.cxx index 9c9d9c4c0..f82027aa3 100644 --- a/lexers/LexScriptol.cxx +++ b/lexers/LexScriptol.cxx @@ -21,9 +21,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ClassifyWordSol(Sci_PositionU start, Sci_PositionU end, WordList &keywords, Accessor &styler, char *prevWord) { diff --git a/lexers/LexSmalltalk.cxx b/lexers/LexSmalltalk.cxx index 4c72eb3ad..bd146d59c 100644 --- a/lexers/LexSmalltalk.cxx +++ b/lexers/LexSmalltalk.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /* | lexTable classificationBlock charClasses | diff --git a/lexers/LexSorcus.cxx b/lexers/LexSorcus.cxx index 6a138065f..66669dc8c 100644 --- a/lexers/LexSorcus.cxx +++ b/lexers/LexSorcus.cxx @@ -25,9 +25,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif //each character a..z and A..Z + '_' can be part of a keyword diff --git a/lexers/LexSpecman.cxx b/lexers/LexSpecman.cxx index 72a973755..5a4c9105f 100644 --- a/lexers/LexSpecman.cxx +++ b/lexers/LexSpecman.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 == '_' || ch == '\''); diff --git a/lexers/LexSpice.cxx b/lexers/LexSpice.cxx index d834e26bf..9c21da308 100644 --- a/lexers/LexSpice.cxx +++ b/lexers/LexSpice.cxx @@ -25,9 +25,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif /* * Interface diff --git a/lexers/LexTACL.cxx b/lexers/LexTACL.cxx index c7a15f220..898234c77 100644 --- a/lexers/LexTACL.cxx +++ b/lexers/LexTACL.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif inline bool isTACLoperator(char ch) { diff --git a/lexers/LexTADS3.cxx b/lexers/LexTADS3.cxx index 03e82d31f..e2aecbf55 100644 --- a/lexers/LexTADS3.cxx +++ b/lexers/LexTADS3.cxx @@ -49,9 +49,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static const int T3_SINGLE_QUOTE = 1; static const int T3_INT_EXPRESSION = 2; diff --git a/lexers/LexTAL.cxx b/lexers/LexTAL.cxx index e7f28eaaa..8d1f057a6 100644 --- a/lexers/LexTAL.cxx +++ b/lexers/LexTAL.cxx @@ -26,9 +26,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif inline bool isTALoperator(char ch) { diff --git a/lexers/LexTCL.cxx b/lexers/LexTCL.cxx index 9377a872e..0948f4880 100644 --- a/lexers/LexTCL.cxx +++ b/lexers/LexTCL.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Extended to accept accented characters static inline bool IsAWordChar(int ch) { diff --git a/lexers/LexTCMD.cxx b/lexers/LexTCMD.cxx index 03895c56a..8050dddea 100644 --- a/lexers/LexTCMD.cxx +++ b/lexers/LexTCMD.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static bool IsAlphabetic(int ch) { diff --git a/lexers/LexTeX.cxx b/lexers/LexTeX.cxx index 36cfe12cc..7ed1bcecc 100644 --- a/lexers/LexTeX.cxx +++ b/lexers/LexTeX.cxx @@ -34,9 +34,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // val SCE_TEX_DEFAULT = 0 // val SCE_TEX_SPECIAL = 1 diff --git a/lexers/LexTxt2tags.cxx b/lexers/LexTxt2tags.cxx index 7e57e118c..6d1a954e0 100644 --- a/lexers/LexTxt2tags.cxx +++ b/lexers/LexTxt2tags.cxx @@ -34,9 +34,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif diff --git a/lexers/LexVB.cxx b/lexers/LexVB.cxx index d221dd470..3b380c4fd 100644 --- a/lexers/LexVB.cxx +++ b/lexers/LexVB.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Internal state, highlighted as number #define SCE_B_FILENUMBER SCE_B_DEFAULT+100 diff --git a/lexers/LexVHDL.cxx b/lexers/LexVHDL.cxx index a1d75b277..229013ea6 100644 --- a/lexers/LexVHDL.cxx +++ b/lexers/LexVHDL.cxx @@ -28,9 +28,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static void ColouriseVHDLDoc( Sci_PositionU startPos, diff --git a/lexers/LexVerilog.cxx b/lexers/LexVerilog.cxx index aa6cd6d33..901b6e93d 100644 --- a/lexers/LexVerilog.cxx +++ b/lexers/LexVerilog.cxx @@ -33,9 +33,7 @@ #include "SubStyles.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif namespace { // Use an unnamed namespace to protect the functions and classes from name conflicts diff --git a/lexers/LexVisualProlog.cxx b/lexers/LexVisualProlog.cxx index 9b59443f8..552c0ffc8 100644 --- a/lexers/LexVisualProlog.cxx +++ b/lexers/LexVisualProlog.cxx @@ -41,9 +41,7 @@ #include "OptionSet.h" #include "DefaultLexer.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif // Options used for LexerVisualProlog struct OptionsVisualProlog { diff --git a/lexers/LexYAML.cxx b/lexers/LexYAML.cxx index 3709538b7..75515603e 100644 --- a/lexers/LexYAML.cxx +++ b/lexers/LexYAML.cxx @@ -23,9 +23,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static const char * const yamlWordListDesc[] = { "Keywords", |