Skip to content
Snippets Groups Projects
Commit b6a06201 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix an applicable restart test that failed to return T when the condition is NIL.

Many thanks to Juan Jose Garcia-Ripoll for diagnosing the issue.
parent d3a4d359
No related branches found
No related tags found
No related merge requests found
......@@ -1140,9 +1140,10 @@ to `~a` which is not a directory.~@:>"
(equalp (missing-requires c)
required-c))))
|#
(and (typep c 'missing-dependency)
(equalp (missing-requires c)
required-c)))))))
(or (null c)
(and (typep c 'missing-dependency)
(equalp (missing-requires c)
required-c))))))))
(do-dep (op dep)
(cond ((eq op 'feature)
(or (member (car dep) *features*)
......
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