File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
fail-fast : false
11
11
matrix :
12
12
version :
13
- - ' 1.5'
14
13
- ' 1.6'
14
+ - ' 1.9'
15
15
- ' nightly'
16
16
os :
17
17
- ubuntu-latest
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ keywords = ["Characters"]
4
4
license = " MIT"
5
5
desc = " Basic functionality for Chr type"
6
6
authors = [
" ScottPJones <[email protected] >" ]
7
- version = " 1.0.3 "
7
+ version = " 1.0.4 "
8
8
9
9
[deps ]
10
10
Unicode = " 4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ const _isnumeric_a = _isdigit
82
82
@inline _ispunct_l (ch) = ((UInt64 (1 ) << (ch- 0x80 )) & 0x88c0_0882_0000_0000 ) != 0
83
83
@inline _isspace_l (ch) = (ch == 0x85 ) | (ch == 0xa0 )
84
84
@inline _isalpha_l (ch) = ((0xff7f_ffff_ff7f_ffff_0420_0400_0000_0000 >>> (ch- 0x80 )) & 1 ) != 0
85
- @inline _isalnum_l (ch) = _isalpha_l (ch) || _isnumeric_l (ch)
85
+ @inline _isalnum_l (ch) = (( 0xff7f_ffff_ff7f_ffff_762c_0400_0000_0000 >>> (ch- 0x80 )) & 1 ) != 0
86
86
@inline _isprint_l (ch) = ((0xa0 <= ch <= 0xff ) & (ch != 0xad ))
87
87
@inline _isgraph_l (ch) = ((0xa0 < ch <= 0xff ) & (ch != 0xad ))
88
88
You can’t perform that action at this time.
0 commit comments