Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clean up char map to handle chars > 127 #78

Closed
client9 opened this issue Jun 27, 2014 · 0 comments
Closed

clean up char map to handle chars > 127 #78

client9 opened this issue Jun 27, 2014 · 0 comments

Comments

@client9
Copy link
Owner

client9 commented Jun 27, 2014

this was hacked in a while ago:

          if (ch > 127) {

              /* 160 or 0xA0 or octal 240 is "latin1 non-breaking space"
               * but is treated as a space in mysql.
               */
              if (ch == 160) {
                  fnptr = parse_white;
              } else {
                  fnptr = parse_word;
              }
         } else {

replace to remove this logic.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant