Skip to content

Commit

Permalink
fix #8615, missing reverse in parsing vcat with ;
Browse files Browse the repository at this point in the history
(cherry picked from commit 6ae205e)
fixes #10464
  • Loading branch information
JeffBezanson authored and tkelman committed Mar 11, 2015
1 parent e3fbe7e commit bf78596
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 @@ -1396,7 +1396,7 @@
(if (eqv? (require-token s) closer)
(loop lst nxt)
(let ((params (parse-arglist s closer)))
`(vcat ,@params ,@lst ,nxt))))
`(vcat ,@params ,@(reverse lst) ,nxt))))
((#\] #\})
(error (string "unexpected \"" t "\"")))
(else
Expand Down

0 comments on commit bf78596

Please sign in to comment.