Fix problem with using bundle? as a bundle predicate.
authorChris Hanson <org/chris-hanson/cph>
Sun, 6 Jan 2019 02:12:26 +0000 (18:12 -0800)
committerChris Hanson <org/chris-hanson/cph>
Sun, 6 Jan 2019 02:12:26 +0000 (18:12 -0800)
src/runtime/bundle.scm

index 44d6e669ef74efd578f98cbca3e187bf1fd7a03d..67bc8095ebbd921f8bd9054d46b8ca3d70ea3f93 100644 (file)
@@ -78,6 +78,10 @@ USA.
 (define <bundle>
   (make-record-type '<bundle> '(alist)))
 
+(defer-boot-action 'record-procedures
+  (lambda ()
+    (set-record-type-applicator! <bundle> %bundle-applicator)))
+
 (define bundle?
   (record-predicate <bundle>))