X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=8sync%2Fsystems%2Factors.scm;h=919ebb1ef16de0976c43b400bafc9684cf48a5f3;hb=6ddb48051db9d47eaa28f3e7561622b145e3725a;hp=f9574d39b6a7a08614206509b0acf710389a1955;hpb=48174b48346c194142c4f1204cae60a5d1cc80c4;p=8sync.git diff --git a/8sync/systems/actors.scm b/8sync/systems/actors.scm index f9574d3..919ebb1 100644 --- a/8sync/systems/actors.scm +++ b/8sync/systems/actors.scm @@ -126,11 +126,6 @@ (body message-body) (in-reply-to message-in-reply-to) (wants-reply message-wants-reply) - - ;; See XUDD source for these. Not use yet, maybe eventually will be? - ;; XUDD uses them for autoreply. - ;; Requiring mutation on message objects is clearly not great, - ;; but it may be worth it...? Investigate! (replied message-replied set-message-replied!) (deferred-reply message-deferred-reply set-message-deferred-reply!)) @@ -684,16 +679,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)