diff options
author | nyamatongwe <unknown> | 2012-07-02 15:37:54 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-07-02 15:37:54 +1000 |
commit | 0304e4f83d3f9d065820f76a71eb070108a8c951 (patch) | |
tree | 82bbde88b33bfe09462e30472ddae23fc2d19471 /src | |
parent | efef37574f047fc428b9de410bd8da30809671ed (diff) | |
download | scintilla-mirror-0304e4f83d3f9d065820f76a71eb070108a8c951.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 |