Skip to content

Commit

Permalink
fix #8615, missing reverse in parsing vcat with ;
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Oct 8, 2014
1 parent 9a273ff commit 6ae205e
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 @@ -1426,7 +1426,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 6ae205e

Please sign in to comment.