Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: third_party/sqlite/src/ext/fts1/simple_tokenizer.c

Issue 6823057: Cleanup SQLite 3.6.18 import. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c ('k') | third_party/sqlite/src/ext/icu/icu.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/ext/fts1/simple_tokenizer.c
diff --git a/third_party/sqlite/src/ext/fts1/simple_tokenizer.c b/third_party/sqlite/src/ext/fts1/simple_tokenizer.c
index 9a52bd1bfd6bfcff074e2dc369e509e2c0f30804..d00a77089d871ccbd6528a943ab79045b0445a3a 100644
--- a/third_party/sqlite/src/ext/fts1/simple_tokenizer.c
+++ b/third_party/sqlite/src/ext/fts1/simple_tokenizer.c
@@ -138,7 +138,7 @@ static int simpleNext(
** 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;
« no previous file with comments | « third_party/sqlite/src/ext/fts1/fts1_tokenizer1.c ('k') | third_party/sqlite/src/ext/icu/icu.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698