X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=demos%2Fircbot.scm;h=81940fc66744e86206e9449922d1fb6dba44f3ec;hb=38afa0b278e17953b64764d800beaaa6368f70be;hp=c8571561d9582285c24e5601fae9c181e76a9342;hpb=0738b6b6e70c8046827fabdb22c0460dd5e464b2;p=8sync.git diff --git a/demos/ircbot.scm b/demos/ircbot.scm index c857156..81940fc 100755 --- a/demos/ircbot.scm +++ b/demos/ircbot.scm @@ -106,17 +106,17 @@ (run-hive (lambda (hive) (define irc-bot - (bootstrap-actor* hive "irc-bot" - #:username username - #:server server - #:channels channels)) + (create-actor* "irc-bot" + #:username username + #:server server + #:channels channels)) (define repl-manager (cond ((string? repl) - (bootstrap-actor* hive "repl" - #:path repl)) + (create-actor* "repl" + #:path repl)) (repl - (bootstrap-actor* hive "repl")))) + (create-actor* "repl")))) (wait (make-condition)))))