1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-19 10:10:23 +02:00

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

This commit is contained in:
Kevin Ryde 2004-07-09 23:48:17 +00:00
parent 9c8911e5fe
commit 30c9c68e9b

View file

@ -1,6 +1,6 @@
;;; installed-scm-file ;;; installed-scm-file
;;;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ;;;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
;;;; ;;;;
;;;; This program is free software; you can redistribute it and/or modify ;;;; This program is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by ;;;; it under the terms of the GNU General Public License as published by
@ -2887,13 +2887,17 @@
;;; ;;;
;;; 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.
;; ;;