Skip to content

Commit

Permalink
Merge pull request #98 from wingo/pr-96-spinoff
Browse files Browse the repository at this point in the history
Fix wait-until-port-writable-operation.
  • Loading branch information
emixa-d committed Sep 17, 2023
2 parents ce89657 + 2276cb2 commit f8ec3c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fibers/io-wakeup.scm
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ of the operation."

(define (wait-until-port-writable-operation port)
"Make an operation that will succeed when PORT is writable."
(make-write-operation (try-ready readable? port) port))
(make-write-operation (try-ready writable? port) port))

(define (with-x-waiting-is-failure port current-x-waiter try-fn)
"Return a thunk like TRY-FN, except that it also fails when
Expand Down

0 comments on commit f8ec3c4

Please sign in to comment.