Megatest

Check-in Differences
Login

Difference From 2f7180aa77bfca2f To e6be7bbc9f5d29fb

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
15:39
Additional tweaks to enable chicken 5 check-in: b772abfc70 user: jmoon18 tags: v1.70-refactor02-chicken5, v1.70-defunct-try

Deleted 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 [9bc2d4d6ac] to [f76dbbda05].

31
32
33
34
35
36
37
38
39
40


41
42
43
44
45
46
47
31
32
33
34
35
36
37



38
39
40
41
42
43
44
45
46







-
-
-
+
+







; 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) )
(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.

(define pathname-expand