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:
parent
72b4bea4d3
commit
018733ff9e
1 changed files with 6 additions and 2 deletions
|
@ -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.
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue