switch %8sync-caught-error to 8sync-caught-error
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 28 Nov 2015 04:14:13 +0000 (22:14 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 28 Nov 2015 04:14:13 +0000 (22:14 -0600)
eightsync/agenda.scm
tests/test-agenda.scm

index edade135c09499e7b08beaf86c573c01d5fb3e1e..27c0d7d2371feb023853372035ad7e810391622f 100644 (file)
@@ -479,7 +479,7 @@ return the wrong thing via (%8sync) and trip themselves up."
 (define-syntax-rule (propagate-%async-exceptions body)
   (let ((body-result body))
     (if (wrapped-exception? body-result)
-        (throw '%8sync-caught-error
+        (throw '8sync-caught-error
                (wrapped-exception-key body-result)
                (wrapped-exception-args body-result)
                (wrapped-exception-stacks body-result))
@@ -515,7 +515,7 @@ return the wrong thing via (%8sync) and trip themselves up."
             ;; @@: For this stack to work doesn't it have to be
             (lambda (key . args)
               (cond
-               ((eq? key '%8sync-caught-error)
+               ((eq? key '8sync-caught-error)
                 (match args
                   ((orig-key orig-args orig-stacks)
                    (make-wrapped-exception
@@ -546,7 +546,7 @@ return the wrong thing via (%8sync) and trip themselves up."
          body ...)))))
 
 (define-syntax-rule (catch-8sync exp (handler-key handler) ...)
-  (catch '%8sync-caught-error
+  (catch '8sync-caught-error
     (lambda ()
       exp)
     (lambda (_ orig-key orig-args orig-stacks)
@@ -554,7 +554,7 @@ return the wrong thing via (%8sync) and trip themselves up."
        ((or (eq? handler-key #t)
             (eq? orig-key handler-key))
         (apply handler orig-stacks orig-args)) ...
-       (else (raise '%8sync-caught-error
+       (else (raise '8sync-caught-error
                     orig-key orig-args orig-stacks))))))
 
 ;; Alias...?
index a41be0adfe58431b272923bc76fcba685db825f1..9ab65f1cdf57f3ef488ded5d0f33a006f382c4b5 100644 (file)
   (catch-8sync
    (begin
      (speaker "hello")
-     (throw '%8sync-caught-error
+     (throw '8sync-caught-error
             'my-orig-key '(apple orange banana) '(*fake-stack* *fake-stack* *fake-stack*))
      (speaker "no goodbyes"))
    ('some-key