Skip to content

Commit

Permalink
another slight optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Jul 19, 2017
1 parent 07a2014 commit e976448
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 @@ -66,7 +66,7 @@
(define (maybe-strip-op-suffix op)
(if (symbol? op)
(let ((op_ (strip-op-suffix op)))
(if (or (eqv? op op_) (no-suffix? op_))
(if (or (eq? op op_) (no-suffix? op_))
op
op_))
op))
Expand Down

0 comments on commit e976448

Please sign in to comment.