Skip to content

Commit

Permalink
remove unnecessary named let in parse-assignment (JuliaLang#30511)
Browse files Browse the repository at this point in the history
  • Loading branch information
bicycle1885 authored and JeffBezanson committed Dec 26, 2018
1 parent b73a746 commit 71518a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/julia-parser.scm
Original file line number Diff line number Diff line change
Expand Up @@ -737,8 +737,8 @@
ex))

(define (parse-assignment s down)
(let loop ((ex (down s))
(t (peek-token s)))
(let* ((ex (down s))
(t (peek-token s)))
(if (not (is-prec-assignment? t))
ex
(begin
Expand Down

0 comments on commit 71518a3

Please sign in to comment.