Raymond Toy pushed to branch issue-269-unix-get-user-homedir at cmucl / cmucl
Commits: 121966b8 by Raymond Toy at 2023-11-30T05:26:11-08:00 Revert changes to match master branch
- - - - - e295afde by Raymond Toy at 2023-11-30T05:26:28-08:00 Address review comments
Remove incorrect export symbol because it's not in EXTENSIONS anymore.
- - - - -
2 changed files:
- src/code/filesys.lisp - tests/filesys.lisp
Changes:
===================================== src/code/filesys.lisp ===================================== @@ -27,8 +27,7 @@
(in-package "EXTENSIONS") (export '(print-directory complete-file ambiguous-files default-directory - purge-backup-files file-writable unix-namestring - get-user-homedir-pathname)) + purge-backup-files file-writable unix-namestring)) (in-package "LISP")
===================================== tests/filesys.lisp ===================================== @@ -54,3 +54,7 @@ (assert-equal "/tmp/foo/bar/symlink" (ext:unix-namestring "/tmp/foo/bar/symlink" nil))) (unix:unix-unlink "/tmp/foo/bar/symlink"))) + + + +
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/a24b478ffed5ec6585bc6b4...