Overview
Comment: | Fixed pathname-expand egg for chicken 5 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.70-refactor02-chicken5 | v1.70-defunct-try |
Files: | files | file ages | folders |
SHA1: |
2f7180aa77bfca2f60faed43fe66b7b2 |
User & Date: | jmoon18 on 2020-01-02 15:45:02 |
Other Links: | branch diff | manifest | tags |
Context
2020-01-02
| ||
15:47 | Updated DBI egg for chicken 5 check-in: 80e66f4369 user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
15:45 | Fixed pathname-expand egg for chicken 5 check-in: 2f7180aa77 user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
15:40 | Initial load of needed eggs into fossil check-in: e6be7bbc9f user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try | |
Changes
Added pathname-expand/pathname-expand.egg version [39095f0126].
> > > > | 1 2 3 4 | ((license "BSD") (category os) (author "The CHICKEN team") (components (extension pathname-expand))) |
Modified pathname-expand/pathname-expand.scm from [f76dbbda05] to [9bc2d4d6ac].
︙ | ︙ | |||
31 32 33 34 35 36 37 | ; STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ; OF THE POSSIBILITY OF SUCH DAMAGE. (module pathname-expand (pathname-expand) | > | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | ; STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ; 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) ) ;; Expand pathname starting with "~", and/or apply base directory to ;; relative pathname ; ; Inspired by Gambit's "path-expand" procedure. (define pathname-expand |
︙ | ︙ |