Skip to content

Commit

Permalink
Fix find-builtin-symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
skyizwhite committed Dec 11, 2024
1 parent 011ccd6 commit 3188d5d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/dsl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,8 @@
(not (keywordp node))
(find-symbol (string node) :hsx/builtin))
node)
(cons (find-builtin-symbols (car node))
(mapcar (lambda (n)
(if (listp n)
(find-builtin-symbols n)
n))
(cdr node)))))
(cons (find-builtin-symbols (first node))
(find-builtin-symbols (rest node)))))

;;;; defhsx macro

Expand Down

0 comments on commit 3188d5d

Please sign in to comment.