guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 04/04: Fix one remaining use of make-record-type with st


From: Andy Wingo
Subject: [Guile-commits] 04/04: Fix one remaining use of make-record-type with string type name
Date: Wed, 23 Oct 2019 08:48:09 -0400 (EDT)

wingo pushed a commit to branch master
in repository guile.

commit 04615d3c206e5ab612286beffc3e7e5bae1d3af4
Author: Andy Wingo <address@hidden>
Date:   Wed Oct 23 14:45:36 2019 +0200

    Fix one remaining use of make-record-type with string type name
    
    * test-suite/tests/gc.test ("weak-values versus records"): Fix to pass a
      symbol.
---
 test-suite/tests/gc.test | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-suite/tests/gc.test b/test-suite/tests/gc.test
index 04f3539..1827599 100644
--- a/test-suite/tests/gc.test
+++ b/test-suite/tests/gc.test
@@ -46,7 +46,7 @@
 ;; chance gc will mark something used when it isn't, so we allow x to be a
 ;; record too.
 (pass-if "weak-values versus records"
-  (let ((rec-type (make-record-type "foo" '()))
+  (let ((rec-type (make-record-type 'foo '()))
        (h        (make-weak-value-hash-table 61)))
     (hash-set! h "foo" ((record-constructor rec-type)))
     (gc)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]