Skip to content

Commit

Permalink
add some missing unicode operators to dot-opchar?
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolewski committed Jan 9, 2015
1 parent 29c64d1 commit 1101086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/julia-parser.scm
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
;; characters that can be in an operator
(define opchar? (Set op-chars))
;; characters that can follow . in an operator
(define (dot-opchar? c) (and (char? c) (string.find ".*^/\\+-'<>!=%" c)))
(define (dot-opchar? c) (and (char? c) (string.find ".*^/\\+-'<>!=%≥≤≠÷" c)))
(define operator? (Set operators))

(define reserved-words '(begin while if for try return break continue
Expand Down

4 comments on commit 1101086

@jakebolewski
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missed the boat on v0.3.5, but @JuliaBackports

@tkelman
Copy link
Contributor

@tkelman tkelman commented on 1101086 Jan 9, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tracking with a label at #9684 so we don't forget about it

@Keno
Copy link
Member

@Keno Keno commented on 1101086 Jan 9, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tests :)?

@tkelman
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

backported in 68d11e4, and tests in a09b2fa

Please sign in to comment.