summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2004-07-09 23:44:48 +0000
committerKevin Ryde <user42@zip.com.au>2004-07-09 23:44:48 +0000
commit018733ff9e59a67b8f6776c7f60ce6443c8f2979 (patch)
tree3e371720413f6c1c9d21ad7406c180a6d18f8b37
parent72b4bea4d3247ab9c7d49a310e970b20eff1272b (diff)
downloadguile-018733ff9e59a67b8f6776c7f60ce6443c8f2979.tar.gz
(%cond-expand-features): Add srfi-6 which is in the core.
-rw-r--r--ice-9/boot-9.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm
index 7ec826e23..4df582807 100644
--- a/ice-9/boot-9.scm
+++ b/ice-9/boot-9.scm
@@ -3183,14 +3183,18 @@
;;;
;;; Currently, the following feature identifiers are supported:
;;;
-;;; guile r5rs srfi-0
+;;; guile r5rs srfi-0 srfi-6
;;;
;;; Remember to update the features list when adding more SRFIs.
;;;
(define %cond-expand-features
;; Adjust the above comment when changing this.
- '(guile r5rs srfi-0))
+ '(guile
+ r5rs
+ srfi-0 ;; cond-expand itself
+ srfi-6 ;; open-input-string etc, in the guile core
+ ))
;; This table maps module public interfaces to the list of features.
;;