summaryrefslogtreecommitdiff
path: root/catbird/scene.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2023-05-13 21:12:20 -0400
committerDavid Thompson <dthompson2@worcester.edu>2023-05-13 21:12:20 -0400
commit420ee870c14f26747103ced6a0f0a7481b802b86 (patch)
tree3e2451b25b26c5c209b82e2c1559813522407b98 /catbird/scene.scm
parent4d754131006679ebe3314df600c2cc1760335dcd (diff)
Remove $ syntax.
Conflicts with goblins.
Diffstat (limited to 'catbird/scene.scm')
-rw-r--r--catbird/scene.scm7
1 files changed, 0 insertions, 7 deletions
diff --git a/catbird/scene.scm b/catbird/scene.scm
index 69a0b1d..5f29d6a 100644
--- a/catbird/scene.scm
+++ b/catbird/scene.scm
@@ -37,7 +37,6 @@
with-scene
add-to-scene
scene-script
- $
regions
major-mode
minor-modes
@@ -59,12 +58,6 @@
(define-syntax-rule (with-scene scene body ...)
(parameterize ((current-scene scene)) body ...))
-(define-syntax $
- (syntax-rules ()
- ((_) (current-scene))
- ((_ names ...)
- (& (current-scene) names ...))))
-
(define-method (add-to-scene . nodes)
(apply attach-to (current-scene) nodes))