Skip to content

Commit cf59e6d

Browse files
committed
fix list compilation
1 parent 550e9a3 commit cf59e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tosexp/src/tosexp/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
(defn list-macro [arg & args]
2626
(if (seq args)
2727
(list 'Cons (transform arg) (apply list-macro args))
28-
(list (transform arg) (transform 0))))
28+
(list 'Cons (transform arg) (transform 0))))
2929

3030
(defn let-macro [args body]
3131
(let [args (partition 2 args)

0 commit comments

Comments
 (0)