diff options
Diffstat (limited to 'src/tokenize.c')
-rw-r--r-- | src/tokenize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tokenize.c b/src/tokenize.c index a9e0167b5..b5a7f8580 100644 --- a/src/tokenize.c +++ b/src/tokenize.c @@ -15,7 +15,7 @@ ** individual tokens and sends those tokens one-by-one over to the ** parser for analysis. ** -** $Id: tokenize.c,v 1.128 2007/05/15 09:00:15 drh Exp $ +** $Id: tokenize.c,v 1.129 2007/05/15 14:34:32 drh Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -365,7 +365,7 @@ static int getToken(const unsigned char *z, int *tokenType){ } #endif default: { - if( !IdChar(*z) || (*z & 0xc0)==0x80 ){ + if( !IdChar(*z) ){ break; } for(i=1; IdChar(z[i]); i++){} |