| Index: third_party/sqlite/ext/fts1/simple_tokenizer.c
|
| ===================================================================
|
| --- third_party/sqlite/ext/fts1/simple_tokenizer.c (revision 25403)
|
| +++ third_party/sqlite/ext/fts1/simple_tokenizer.c (working copy)
|
| @@ -138,7 +138,7 @@
|
| ** case-insensitivity.
|
| */
|
| char ch = c->pCurrent[ii];
|
| - c->zToken[ii] = ((ch>='A' && ch<='Z') ? (ch-'A'+'a') : ch);
|
| + c->zToken[ii] = (unsigned char)ch<0x80 ? tolower(ch) : ch;
|
| }
|
| c->zToken[n] = '\0';
|
| *ppToken = c->zToken;
|
|
|
| Property changes on: third_party\sqlite\ext\fts1\simple_tokenizer.c
|
| ___________________________________________________________________
|
| Modified: svn:mergeinfo
|
| Reverse-merged /trunk/src/third_party/sqlite/ext/fts1/simple_tokenizer.c:r25141
|
| Reverse-merged /branches/chrome_webkit_merge_branch/third_party/sqlite/ext/fts1/simple_tokenizer.c:r69-2775
|
|
|
|
|