From b706a0112978b1daa4535dff2808eac299167bbf Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sat, 7 May 2011 11:31:38 +0200 Subject: [PATCH] fix srfi-1 map-in-order definition * module/srfi/srfi-1.scm (map-in-order): As we are not extending the core `map' binding, actually make a new `map-in-order' alias here. Fixes fresh builds. --- module/srfi/srfi-1.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/srfi/srfi-1.scm b/module/srfi/srfi-1.scm index bcaca65d7..c60f6257f 100644 --- a/module/srfi/srfi-1.scm +++ b/module/srfi/srfi-1.scm @@ -566,6 +566,8 @@ has just one element then that's the return value." (mapn (cdr l1) (map cdr rest) (1- len) (cons (apply f (car l1) (map car rest)) out)))))))) +(define map-in-order map) + (define for-each (case-lambda ((f l)