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 | ffb3d0fae0fe2c7572e0ed0ed1233c879979aaea (patch) | |
tree | ca0e24b91d606e0cf87cd84e75a8da45bba8522e /src | |
parent | 1f51cbbccab97cb10f1cbf63b422c6a9cb4dfa78 (diff) | |
download | scintilla-mirror-ffb3d0fae0fe2c7572e0ed0ed1233c879979aaea.tar.gz |
Remove function no longer called.
Diffstat (limited to 'src')
-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), |