Skip to content

Commit 7a526e1

Browse files
tokenize.jl: don‘t hardcode unicode ops range
1 parent 2e8d590 commit 7a526e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/julia/tokenize.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function optakessuffix(k)
173173
k == K"!" ||
174174
k == K".'" ||
175175
k == K"->" ||
176-
K"¬" <= k <= K""
176+
K"BEGIN_UNICODE_OPS" <= k <= K"END_UNICODE_OPS"
177177
)
178178
end
179179

0 commit comments

Comments
 (0)