summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2023-02-22 15:42:19 -0500
committerRobby Zambito <contact@robbyzambito.me>2023-02-22 15:42:19 -0500
commit8ff958316381d4814c5648167ed08dc356382f99 (patch)
tree3d8870a00ef024f8c97da4a5e402306a62b17e1d
parent863f67d2ab3423e840f3bf09f965b64819d8e5db (diff)
Do not use a colon in the renamed symbol name.
Kawa uses this to mean something else.
-rw-r--r--lib/zambyte/meta/macduffie.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/zambyte/meta/macduffie.scm b/lib/zambyte/meta/macduffie.scm
index 7e4a79b..652bf1d 100644
--- a/lib/zambyte/meta/macduffie.scm
+++ b/lib/zambyte/meta/macduffie.scm
@@ -1,5 +1,5 @@
(import (rename (macduffie json)
- (json-null md:json-null))
+ (json-null md-json-null))
(scheme case-lambda)
(srfi 1)
(srfi 2)
@@ -9,7 +9,7 @@
(alist->hash-table pairs))
(define json-list list)
- (define json-null (md:json-null))
+ (define json-null (md-json-null))
(define (json-object? obj)
(or (hash-table? obj)