summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-10-11 19:12:11 -0400
committerDavid Thompson <dthompson2@worcester.edu>2022-10-11 19:12:11 -0400
commita03f1bda38e00be6b8cc36cba66f73d745b53de3 (patch)
tree63ecdf38462e011a7b326682af1f07b2aab6d751
parent5ed490cac58d9f548bc141cc334c25dea9bfcaf2 (diff)
scripting: Fix some indenting.
-rw-r--r--chickadee/scripting.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/chickadee/scripting.scm b/chickadee/scripting.scm
index 1820348..9f5ec4c 100644
--- a/chickadee/scripting.scm
+++ b/chickadee/scripting.scm
@@ -59,7 +59,7 @@
(yield
(lambda (cont)
(with-agenda agenda
- (schedule-after duration cont))))))
+ (schedule-after duration cont))))))
(define-syntax-rule (wait-until condition)
"Pause current script until CONDITION has been met."
@@ -69,8 +69,8 @@
(yield
(lambda (cont)
(with-agenda agenda
- (call-when (lambda () condition)
- cont)))))))
+ (call-when (lambda () condition)
+ cont)))))))
(define* (tween duration start end proc #:key
(step (current-timestep))