DELETED pathname-expand/pathname-expand.egg Index: pathname-expand/pathname-expand.egg ================================================================== --- pathname-expand/pathname-expand.egg +++ /dev/null @@ -1,4 +0,0 @@ -((license "BSD") - (category os) - (author "The CHICKEN team") - (components (extension pathname-expand))) Index: pathname-expand/pathname-expand.scm ================================================================== --- pathname-expand/pathname-expand.scm +++ pathname-expand/pathname-expand.scm @@ -33,13 +33,12 @@ ; OF THE POSSIBILITY OF SUCH DAMAGE. (module pathname-expand (pathname-expand) -(import (chicken base) (chicken pathname) (chicken condition) (chicken platform) scheme) -(import (chicken fixnum) (chicken process-context) (chicken process-context posix)) -(import srfi-13 (chicken file) ) +(import chicken scheme) +(use srfi-13 files posix) ;; Expand pathname starting with "~", and/or apply base directory to ;; relative pathname ; ; Inspired by Gambit's "path-expand" procedure.