-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
char predicates using libmojibake #8110
Conversation
Fair enough. Looks like my first attempt at dealing with the bootstrapping was also hosed. |
@stevengj -- ok to move these functions into utf8proc? |
Seems reasonable to put them into the UTF8Proc module and then import the to Base from there. |
## libc character class predicates ## | ||
|
||
|
||
islower(c::Char) = (_catcode(c)==UTF8PROC_CATEGORY_LL) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This indentation is non-typical for Base.
OK, all comments to date addressed. |
You don't need to export isblank; [pao: quotes] |
Done. |
Also needs a NEWS item. |
@stevengj reminder: quote macro names ( |
I did a local rebase to check on the Travis failure, and afterwards the local |
Closing due to dirty rebase. I will create a new PR. |
Currently stymied by #8200. I'll re-open once that is resolved. |
see issue #5939
Please note from string.jl the following:
The include was needed to resolve a bootstrap related error. Is there a preferred means of dealing with this type of issue?