~ chicken-core (chicken-5) 02da789dba6194243f3baf180ab19fa2c6278772


commit 02da789dba6194243f3baf180ab19fa2c6278772
Author:     Peter Bex <peter@more-magic.net>
AuthorDate: Sun Apr 30 18:34:34 2017 +0200
Commit:     Peter Bex <peter@more-magic.net>
CommitDate: Sun Apr 30 18:34:34 2017 +0200

    Remove feature? from cond-expand's SE
    
    The macro's expansion doesn't use feature?, the macro itself does.

diff --git a/expand.scm b/expand.scm
index 9e6b1d5a..d84e8df8 100644
--- a/expand.scm
+++ b/expand.scm
@@ -1418,7 +1418,7 @@
 
 (##sys#extend-macro-environment
  'cond-expand
- '((feature? . chicken.platform#feature?))
+ '()
  (##sys#er-transformer
   (lambda (form r c)
     (let ((clauses (cdr form))
Trap