~ chicken-core (chicken-5) b92149da52e53c55fb7a1521228866cad0bb054f
commit b92149da52e53c55fb7a1521228866cad0bb054f
Author: Evan Hanson <evhan@foldling.org>
AuthorDate: Tue Feb 9 13:37:46 2016 +1300
Commit: Evan Hanson <evhan@foldling.org>
CommitDate: Tue Mar 8 22:52:35 2016 +1300
Drop srfi-88 and 98 from library's features
They must be imported now (by their SRFI numbers or, in SRFI 88's case,
as chicken.keyword).
diff --git a/library.scm b/library.scm
index 308c4999..ea593d20 100644
--- a/library.scm
+++ b/library.scm
@@ -4392,9 +4392,9 @@ EOF
(else (err x))))))
(define ##sys#features
- '(#:chicken #:srfi-6 #:srfi-23 #:srfi-30 #:srfi-39 #:srfi-62 #:srfi-17
- #:srfi-12 #:srfi-88 #:srfi-98
- #:irregex-is-core-unit #:full-numeric-tower))
+ '(#:chicken
+ #:srfi-6 #:srfi-12 #:srfi-17 #:srfi-23 #:srfi-30 #:srfi-39 #:srfi-62
+ #:irregex-is-core-unit #:full-numeric-tower))
;; Add system features:
Trap