From: Christopher Allan Webber Date: Mon, 25 Apr 2016 16:39:13 +0000 (-0500) Subject: actors; Move message definitions earlier in the file. X-Git-Tag: v0.2.0~49 X-Git-Url: https://jxself.org/git/?p=8sync.git;a=commitdiff_plain;h=b3a4b6bec6422ef66724fda5bf57f4e2552fe4fc;hp=b3a4b6bec6422ef66724fda5bf57f4e2552fe4fc actors; Move message definitions earlier in the file. The original positioning would mean that sometimes the accessors would break in some of the actor/hive methods. Defining the messages before any methods make use of them seems to fix the problem. * 8sync/systems/actors.scm (, message?, make-message-intern) (message-id, message-to message-from, message-action, message-body) (message-in-reply-to, message-replied, set-message-replied!) (message-deferred-reply, set-message-deferred-reply!, make-message) (%nothing-provided, message-ref, kwarg-list-to-alist, send-message) (send-message-wait, reply-message, reply-message-wait): Moved location to earlier in file. ---