1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-03 13:20:26 +02:00

(%cond-expand-features): Add srfi-6 which is in the core.

This commit is contained in:
Kevin Ryde 2004-07-09 23:44:48 +00:00
parent 72b4bea4d3
commit 018733ff9e

View file

@ -3183,14 +3183,18 @@
;;; ;;;
;;; Currently, the following feature identifiers are supported: ;;; 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. ;;; Remember to update the features list when adding more SRFIs.
;;; ;;;
(define %cond-expand-features (define %cond-expand-features
;; Adjust the above comment when changing this. ;; 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. ;; This table maps module public interfaces to the list of features.
;; ;;