X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=8sync%2Fsystems%2Factors.scm;h=690d63d8082c18a4d1bc2e0fc683b0c93383a6f5;hp=f9574d39b6a7a08614206509b0acf710389a1955;hb=387a9f1a6ceb55c5362daae00171a67abc4135dc;hpb=4874b23457ce2ff05e1381d6b8eca9f97b52285f diff --git a/8sync/systems/actors.scm b/8sync/systems/actors.scm index f9574d3..690d63d 100644 --- a/8sync/systems/actors.scm +++ b/8sync/systems/actors.scm @@ -684,16 +684,16 @@ that method for documentation." This is the method actors should call directly (unless they want to supply an id-cookie, in which case they should use create-actor*)." - (8sync (%hive-create-actor (actor-hive from-actor) actor-class - init #f))) + (%hive-create-actor (actor-hive from-actor) actor-class + init #f)) (define* (create-actor* from-actor actor-class id-cookie #:rest init) "Create an instance of actor-class. Return the new actor's id. Like create-actor, but permits supplying an id-cookie." - (8sync (%hive-create-actor (actor-hive from-actor) actor-class - init id-cookie))) + (%hive-create-actor (actor-hive from-actor) actor-class + init id-cookie)) (define (self-destruct actor)