aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-06-10 05:03:27 +0000
committernyamatongwe <unknown>2002-06-10 05:03:27 +0000
commit4acdf3c9a55ef3e18b4215b8714b21b6113159eb (patch)
tree57dd63afad410e355a92c79bff3a9990b8e5346b /src
parentc06e1e893caa023d5de09ac2364e565fad2f6139 (diff)
downloadscintilla-mirror-4acdf3c9a55ef3e18b4215b8714b21b6113159eb.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.