diff options
author | nyamatongwe <devnull@localhost> | 2012-07-02 15:37:54 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2012-07-02 15:37:54 +1000 |
commit | 3bae6507b9a7bae1992ebcd70816d5eec44bec68 (patch) | |
tree | 707614b47543b87aa2b7c0b58a5a7d0d00bc9594 /src | |
parent | 6b9b5417ab7876c2320d6268fb8fff9e3127f3cf (diff) | |
download | scintilla-mirror-3bae6507b9a7bae1992ebcd70816d5eec44bec68.tar.gz |
Remove functions provided by headers.
Diffstat (limited to 'src')
-rw-r--r-- | src/Document.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 00ae1dbb8..4ce62c45b 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -35,19 +35,10 @@ using namespace Scintilla; #endif -// This is ASCII specific but is safe with chars >= 0x80 -static inline bool isspacechar(unsigned char ch) { - return (ch == ' ') || ((ch >= 0x09) && (ch <= 0x0d)); -} - static inline bool IsPunctuation(char ch) { return isascii(ch) && ispunct(ch); } -static inline bool IsADigit(char ch) { - return isascii(ch) && isdigit(ch); -} - void LexInterface::Colourise(int start, int end) { if (pdoc && instance && !performingStyle) { // Protect against reentrance, which may occur, for example, when |