From e5dfdb4d6e62701177a20e9da84c4f4b8b4820e0 Mon Sep 17 00:00:00 2001 From: c4b3z0n Date: Sat, 27 Jul 2019 20:28:42 -0300 Subject: [PATCH] fix CLISP function for directory deletion symbol was incorrect *** - READ from #: # has no external symbol with name "DELETE-DIR" should be ext:delete-directory --- fad.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fad.lisp b/fad.lisp index 6331b72..e00c686 100644 --- a/fad.lisp +++ b/fad.lisp @@ -305,7 +305,7 @@ might be removed instead! This is currently fixed for SBCL and CCL." (unless ok (error "~@" file (unix:get-unix-error-msg errno)))) - #+:clisp (ext:delete-dir file) + #+:clisp (ext:delete-directory file) #+:openmcl (cl-fad-ccl:delete-directory file) #+:cormanlisp (win32:delete-directory file) #+:ecl (si:rmdir file)