diff options
author | Neil <nyamatongwe@gmail.com> | 2013-11-04 09:06:18 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-11-04 09:06:18 +1100 |
commit | c89ce9202c9f3fd4dced85255d622b57cd3465d3 (patch) | |
tree | 759b9b5376c9bc15ab6410d641dc6df53d017343 /lexers/LexAbaqus.cxx | |
parent | 0000ed4f8695e614287c7560b99893673754b3cc (diff) | |
download | scintilla-mirror-c89ce9202c9f3fd4dced85255d622b57cd3465d3.tar.gz |
Remove local functions that are not used.
Diffstat (limited to 'lexers/LexAbaqus.cxx')
-rw-r--r-- | lexers/LexAbaqus.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lexers/LexAbaqus.cxx b/lexers/LexAbaqus.cxx index 134170071..d93aa503d 100644 --- a/lexers/LexAbaqus.cxx +++ b/lexers/LexAbaqus.cxx @@ -30,10 +30,6 @@ using namespace Scintilla; #endif -static inline bool IsAWordChar(const int ch) { - return (ch < 0x80 && (isalnum(ch) || (ch == '_'))); -} - static inline bool IsAKeywordChar(const int ch) { return (ch < 0x80 && (isalnum(ch) || (ch == '_') || (ch == ' '))); } @@ -42,17 +38,6 @@ static inline bool IsASetChar(const int ch) { return (ch < 0x80 && (isalnum(ch) || (ch == '_') || (ch == '.') || (ch == '-'))); } -static inline bool IsAnOperator(char ch) { - // '.' left out as it is used to make up numbers - if (ch == '*' || ch == '/' || ch == '-' || ch == '+' || - ch == '(' || ch == ')' || ch == '=' || ch == '^' || - ch == '[' || ch == ']' || ch == '<' || ch == '&' || - ch == '>' || ch == ',' || ch == '|' || ch == '~' || - ch == '$' || ch == ':' || ch == '%') - return true; - return false; -} - static void ColouriseABAQUSDoc(unsigned int startPos, int length, int initStyle, WordList*[] /* *keywordlists[] */, Accessor &styler) { enum localState { KW_LINE_KW, KW_LINE_COMMA, KW_LINE_PAR, KW_LINE_EQ, KW_LINE_VAL, \ |