append-map rather than mapappend
authorAndy Wingo <wingo@pobox.com>
Mon, 12 Jan 2015 20:18:57 +0000 (21:18 +0100)
committerAndy Wingo <wingo@pobox.com>
Fri, 23 Jan 2015 15:16:02 +0000 (16:16 +0100)
* module/oop/goops/util.scm: Remove mapappend alias; SRFI-1 append-map
  should be used instead.

module/oop/goops/util.scm

index 3c86f15..fa48645 100644 (file)
@@ -1,4 +1,4 @@
-;;;;   Copyright (C) 1999, 2000, 2001, 2003, 2006, 2008, 2012 Free Software Foundation, Inc.
+;;;;   Copyright (C) 1999, 2000, 2001, 2003, 2006, 2008, 2012, 2015 Free Software Foundation, Inc.
 ;;;; 
 ;;;; This library is free software; you can redistribute it and/or
 ;;;; modify it under the terms of the GNU Lesser General Public
@@ -17,7 +17,7 @@
 \f
 
 (define-module (oop goops util)
-  :export (mapappend find-duplicate
+  :export (find-duplicate
           map* for-each* length* improper->proper)
   :use-module (srfi srfi-1)
   :re-export  (any every)
@@ -29,8 +29,6 @@
 ;;; {Utilities}
 ;;;
 
-(define mapappend append-map)
-
 (define (find-duplicate l)     ; find a duplicate in a list; #f otherwise
   (cond 
     ((null? l)                 #f)