aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-06-10 05:03:27 +0000
committernyamatongwe <devnull@localhost>2002-06-10 05:03:27 +0000
commit0bcb817afe505b758bce2ca1b72568d56ef5d8fc (patch)
tree57dd63afad410e355a92c79bff3a9990b8e5346b /src
parentc3180784fd4ddaeee62e88fe3545b2e1eac206ae (diff)
downloadscintilla-mirror-0bcb817afe505b758bce2ca1b72568d56ef5d8fc.tar.gz
Avoid continuation lines due to hassles with old GCC.
Diffstat (limited to 'src')
-rw-r--r--src/KeyWords.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx
index 611f73c8e..decbac2b8 100644
--- a/src/KeyWords.cxx
+++ b/src/KeyWords.cxx
@@ -130,9 +130,7 @@ int wxForceScintillaLexers(void) {
}
// Shorten the code that declares a lexer and ensures it is linked in by calling a method.
-#define LINK_LEXER(lexer) \
- extern LexerModule lexer; \
- lexer.GetLanguage();
+#define LINK_LEXER(lexer) extern LexerModule lexer; lexer.GetLanguage();
// To add or remove a lexer, add or remove its file and run LexGen.py.