Skip to content
Snippets Groups Projects
Commit e2480f34 authored by Nikodemus Siivola's avatar Nikodemus Siivola
Browse files

document ENSURE-FUNCTIONF

parent bb423c64
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,8 @@ it must be a function name and its FDEFINITION is returned."
(define-modify-macro ensure-functionf/1 () ensure-function)
(defmacro ensure-functionf (&rest places)
"FIXME: UNDOCUMENTED!"
"Multiple-place modify macro for ENSURE-FUNCTION: ensures that each of
PLACES contains a function."
`(progn ,@(mapcar (lambda (x) `(ensure-functionf/1 ,x)) places)))
(defun disjoin (predicate &rest more-predicates)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment