flush sender port after sending text
svn: r2649
This commit is contained in:
parent
f1f301c966
commit
36cb3b9092
|
@ -147,9 +147,11 @@
|
||||||
|
|
||||||
(define send-to-server
|
(define send-to-server
|
||||||
(lambda (communicator message-template . rest)
|
(lambda (communicator message-template . rest)
|
||||||
(apply fprintf (communicator-sender communicator)
|
(let ([sender (communicator-sender communicator)])
|
||||||
(string-append message-template "\r\n")
|
(apply fprintf sender
|
||||||
rest)))
|
(string-append message-template "\r\n")
|
||||||
|
rest)
|
||||||
|
(flush-output sender))))
|
||||||
|
|
||||||
;; parse-status-line :
|
;; parse-status-line :
|
||||||
;; string -> number x string
|
;; string -> number x string
|
||||||
|
|
Loading…
Reference in New Issue
Block a user