Skip to content

Commit

Permalink
Minor code reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
c42f committed Apr 15, 2017
1 parent 3763747 commit cfc2dbd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/macroexpand.scm
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,7 @@
(let ((e (car exs)))
(if (and (pair? e) (eq? (car e) 'line))
(loop (cdr exs) (cadr e) (cons e out))
(loop (cdr exs) lineno
(cons (julia-expand-macros e lineno) out)))))))
(loop (cdr exs) lineno (cons (julia-expand-macros e lineno) out)))))))

;; macro expander entry point
(define (julia-expand-macros e lineno)
Expand Down

0 comments on commit cfc2dbd

Please sign in to comment.