mirror of
https://github.com/fiddlerwoaroof/data-lens.git
synced 2025-11-08 10:16:32 +00:00
fix: remove spurious warning in DISJ
This commit is contained in:
@ -132,6 +132,7 @@
|
|||||||
(defmacro disj (&rest fns)
|
(defmacro disj (&rest fns)
|
||||||
(let ((dat (gensym "dat")))
|
(let ((dat (gensym "dat")))
|
||||||
`(lambda (,dat)
|
`(lambda (,dat)
|
||||||
|
(declare (ignorable ,dat))
|
||||||
(or ,@(mapcar (lambda (fn)
|
(or ,@(mapcar (lambda (fn)
|
||||||
`(funcall ,fn ,dat))
|
`(funcall ,fn ,dat))
|
||||||
fns)))))
|
fns)))))
|
||||||
|
|||||||
Reference in New Issue
Block a user