aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexForth.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-11-04 09:06:18 +1100
committerNeil <nyamatongwe@gmail.com>2013-11-04 09:06:18 +1100
commitf267ffa752c0468a7695f4c7e187f79fcc9948e9 (patch)
treea0e0de2005970d78d9be5b22f9d114193555c72a /lexers/LexForth.cxx
parent63b724f02ea99804c2bfd67dcc8bc56003091d1a (diff)
downloadscintilla-mirror-f267ffa752c0468a7695f4c7e187f79fcc9948e9.tar.gz
Remove local functions that are not used.
Diffstat (limited to 'lexers/LexForth.cxx')
-rw-r--r--lexers/LexForth.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/lexers/LexForth.cxx b/lexers/LexForth.cxx
index c9c72624e..7b41aaf8e 100644
--- a/lexers/LexForth.cxx
+++ b/lexers/LexForth.cxx
@@ -27,15 +27,6 @@
using namespace Scintilla;
#endif
-static inline bool IsAWordChar(int ch) {
- return (ch < 0x80) && (isalnum(ch) || ch == '.' ||
- ch == '_' || ch == '?' || ch == '"' || ch == '@' ||
- ch == '!' || ch == '[' || ch == ']' || ch == '/' ||
- ch == '+' || ch == '-' || ch == '*' || ch == '<' ||
- ch == '>' || ch == '=' || ch == ';' || ch == '(' ||
- ch == ')' );
-}
-
static inline bool IsAWordStart(int ch) {
return (ch < 0x80) && (isalnum(ch) || ch == '_' || ch == '.');
}