Skip to content

Commit 3657f25

Browse files
committed
Minor code reformatting
1 parent 205a003 commit 3657f25

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/macroexpand.scm

+1-2
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,7 @@
412412
(let ((e (car exs)))
413413
(if (and (pair? e) (eq? (car e) 'line))
414414
(loop (cdr exs) (cadr e) (cons e out))
415-
(loop (cdr exs) lineno
416-
(cons (julia-expand-macros e lineno) out)))))))
415+
(loop (cdr exs) lineno (cons (julia-expand-macros e lineno) out)))))))
417416

418417
;; macro expander entry point
419418
(define (julia-expand-macros e lineno)

0 commit comments

Comments
 (0)