12 Feb
2009
12 Feb
'09
11:42 p.m.
Qui, 2009-02-12 ?s 19:38 +0000, corvid escreveu:
I updated the UTF-8 sampler search bar screenshot to show off the nifty new button :)
Great, thanks! Onto another subject I've been trying to understand what's going on in CharIterator::prev() and have been running tests and I have a question regarding iterator.hh. In the following code: inline static bool charsEqual (char c1, char c2, bool caseSens) { return caseSens ? c1 == c2 : tolower (c1) == tolower (c2) || (isspace (c1) && isspace (c2)); } Why are we checking if c1 and c2 are spaces? This is the code that, according to my tests, is wrecking the search-previous functionality. Thanks, Jo?o