Use BIG-UTIL instead of rolling our own stuff.
This commit is contained in:
parent
b99348651d
commit
76d5ce3a74
8
ftpd.scm
8
ftpd.scm
|
@ -807,7 +807,7 @@
|
||||||
|
|
||||||
; Version
|
; Version
|
||||||
|
|
||||||
(define *ftpd-version* "$Revision: 1.9 $")
|
(define *ftpd-version* "$Revision: 1.10 $")
|
||||||
|
|
||||||
(define (copy-port->port-binary input-port output-port)
|
(define (copy-port->port-binary input-port output-port)
|
||||||
(let ((buffer (make-string *window-size*)))
|
(let ((buffer (make-string *window-size*)))
|
||||||
|
@ -856,9 +856,3 @@
|
||||||
((null? maybe-arg) default-exp)
|
((null? maybe-arg) default-exp)
|
||||||
((null? (cdr maybe-arg)) (car maybe-arg))
|
((null? (cdr maybe-arg)) (car maybe-arg))
|
||||||
(else (error "too many optional arguments" maybe-arg))))
|
(else (error "too many optional arguments" maybe-arg))))
|
||||||
|
|
||||||
; Stuff from Big Scheme
|
|
||||||
; We can't open BIG-SCHEME because we use virgin SIGNALS. Sigh.
|
|
||||||
|
|
||||||
(define any? (structure-ref big-scheme any?))
|
|
||||||
(define partition-list (structure-ref big-scheme partition-list))
|
|
||||||
|
|
|
@ -427,6 +427,7 @@
|
||||||
threads
|
threads
|
||||||
fluids
|
fluids
|
||||||
string-lib
|
string-lib
|
||||||
|
big-util
|
||||||
defrec-package
|
defrec-package
|
||||||
crlf-io strings ls)
|
crlf-io strings ls)
|
||||||
(access big-scheme)
|
(access big-scheme)
|
||||||
|
|
Loading…
Reference in New Issue