From e268e79621f23cb7d3d9efc78093f0d85b356cdf Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 12 Dec 2016 12:48:20 -0600 Subject: [PATCH] actors: Remove => alias. Seems it causes problems with cond and etc. No big surprise. * 8sync/systems/actors.scm (=>): Removed. --- 8sync/systems/actors.scm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/8sync/systems/actors.scm b/8sync/systems/actors.scm index caee695..ea638c0 100644 --- a/8sync/systems/actors.scm +++ b/8sync/systems/actors.scm @@ -70,7 +70,7 @@ <- <-wait <-reply <-reply-wait - call-with-message msg-receive => + call-with-message msg-receive ez-run-hive bootstrap-message @@ -622,12 +622,6 @@ argument. Similar to call-with-values in concept." (lambda* arglist body ...))) -;; Emacs: (put '=> 'scheme-indent-function 2) -;;; An experimental alias. -(define-syntax-rule (=> rest ...) - (msg-receive rest ...)) - - ;;; Various API methods for actors to interact with the system ;;; ========================================================== -- 2.31.1