From 8ff958316381d4814c5648167ed08dc356382f99 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Wed, 22 Feb 2023 15:42:19 -0500 Subject: Do not use a colon in the renamed symbol name. Kawa uses this to mean something else. --- lib/zambyte/meta/macduffie.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/zambyte/meta/macduffie.scm') 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) -- cgit