1
0
Fork 0

Small improvements to dependency reading

This commit is contained in:
retropikzel 2025-10-30 09:42:58 +02:00
parent 6e15d3768f
commit 9dab8abe9a
1 changed files with 3 additions and 2 deletions

View File

@ -59,8 +59,9 @@
(cdr (car rest)))))
(get-imports result
implementation
(cdr (assoc 'else
(cdr (car rest)))))))
(cdr (or (assoc 'else
(cdr (car rest)))
(cons #f '()))))))
((member 'import (car rest))
(get-imports (append result (list) (cdr (car rest)))
implementation