diff options
author | Teddy Wing | 2021-01-31 16:27:13 +0100 |
---|---|---|
committer | Teddy Wing | 2021-01-31 16:27:13 +0100 |
commit | 5055107b69e72457c37ed0ece91004665e4ad2e3 (patch) | |
tree | 68a71c5d6bc4b99b29c74da63a34259e006f7c70 /l/extreload.asd | |
parent | b731acb089d93ef7b55f6ed80c2762ce1de3aa3f (diff) | |
download | extreload-5055107b69e72457c37ed0ece91004665e4ad2e3.tar.bz2 |
Convert `filter` from a function to a macro
Doesn't make a big difference, just for fun. I like the idea of a
compile-time version of this since it's essentially just renaming
`remove-if-not`.
Move it to a new file so we can include it before it's used in
`main.lisp`.
Diffstat (limited to 'l/extreload.asd')
-rw-r--r-- | l/extreload.asd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/l/extreload.asd b/l/extreload.asd index 5edcdd7..21a5329 100644 --- a/l/extreload.asd +++ b/l/extreload.asd @@ -5,6 +5,7 @@ :components ((:module "src" :serial t :components ((:file "package") + (:file "macro") (:file "main")))) :build-operation "program-op" |