Skip to content

Commit

Permalink
fix CLISP function for directory deletion
Browse files Browse the repository at this point in the history
symbol was incorrect
*** - READ from #<INPUT BUFFERED FILE-STREAM CHARACTER #P"/home/c4b3z0n/quicklisp/dists/quicklisp/software/cl-fad-20180430-git/fad.lisp" @308>: #<PACKAGE EXT> has no external symbol with name "DELETE-DIR"
should be ext:delete-directory
  • Loading branch information
c4b3z0n authored and stassats committed Jul 28, 2019
1 parent 74be0c9 commit e5dfdb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fad.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ might be removed instead! This is currently fixed for SBCL and CCL."
(unless ok
(error "~@<Error deleting ~S: ~A~@:>"
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)
Expand Down

0 comments on commit e5dfdb4

Please sign in to comment.