From 3bae6507b9a7bae1992ebcd70816d5eec44bec68 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 2 Jul 2012 15:37:54 +1000 Subject: Remove functions provided by headers. --- src/Document.cxx | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src') 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 -- cgit v1.2.3