diff options
author | Neil <nyamatongwe@gmail.com> | 2014-03-11 10:16:44 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-03-11 10:16:44 +1100 |
commit | 2ab821f5894bd3235eae7bd42d1d4671056abca8 (patch) | |
tree | 6e5c9b58dff6fc11233e8d83ea91906183ee739f | |
parent | 9443fa7835ed12df03136b70dc5222c58148b170 (diff) | |
download | scintilla-mirror-2ab821f5894bd3235eae7bd42d1d4671056abca8.tar.gz |
Remove function no longer called.
-rw-r--r-- | src/PositionCache.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/PositionCache.cxx b/src/PositionCache.cxx index 90a3f02f0..664003c7e 100644 --- a/src/PositionCache.cxx +++ b/src/PositionCache.cxx @@ -43,11 +43,6 @@ using namespace Scintilla; #endif -static inline bool IsControlCharacter(int ch) { - // iscntrl returns true for lots of chars > 127 which are displayable - return ch >= 0 && ch < ' '; -} - LineLayout::LineLayout(int maxLineLength_) : lineStarts(0), lenLineStarts(0), |