X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=8sync%2Fsystems%2Firc.scm;h=40d02eb6eb1a6a34c4464e43e25d7fb15c9fd9f5;hp=aad138d09bb62a9de32c5f6bfc1fa0614236040d;hb=dc2155083a90de90e24f5341b837d4d96ce2898c;hpb=08fb307989f2696ddbd2ad535f55558c577b2fdb diff --git a/8sync/systems/irc.scm b/8sync/systems/irc.scm index aad138d..40d02eb 100755 --- a/8sync/systems/irc.scm +++ b/8sync/systems/irc.scm @@ -189,7 +189,7 @@ (format socket "JOIN ~a~a" channel irc-eol)) (irc-bot-channels irc-bot)) - (<- irc-bot (actor-id irc-bot) 'main-loop)) + (<- (actor-id irc-bot) 'main-loop)) (define (irc-bot-main-loop irc-bot message) (define socket (irc-bot-socket irc-bot)) @@ -212,7 +212,7 @@ ;; 'done) ;; Otherwise, let's read till the next line! (else - (<- irc-bot (actor-id irc-bot) 'main-loop)))) + (<- (actor-id irc-bot) 'main-loop)))) (define* (irc-bot-send-line-action irc-bot message channel line #:key emote?)