Make SPLIT-ARGUMENTS compatible with scsh >=0.5.2.
This commit is contained in:
parent
62f6ae4084
commit
6512d291cc
4
ftpd.scm
4
ftpd.scm
|
@ -731,7 +731,7 @@
|
|||
(substring file-name 1 (string-length file-name)))
|
||||
|
||||
(define split-arguments
|
||||
(infix-splitter " +"))
|
||||
(infix-splitter (make-regexp " +")))
|
||||
|
||||
; Reply handling
|
||||
|
||||
|
@ -772,7 +772,7 @@
|
|||
|
||||
; Version
|
||||
|
||||
(define *ftpd-version* "$Revision: 1.2 $")
|
||||
(define *ftpd-version* "$Revision: 1.3 $")
|
||||
|
||||
(define (copy-port->port-binary input-port output-port)
|
||||
(let ((buffer (make-string *window-size*)))
|
||||
|
|
Loading…
Reference in New Issue