diff options
-rw-r--r-- | ice-9/ChangeLog | 4 | ||||
-rw-r--r-- | ice-9/threads.scm | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index ea9929319..1ca85f290 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,7 @@ +2002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net> + + * threads.scm: Removed bogus definition of future-ref. + 2002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se> * threads.scm (par-map, par-for-each): Reimplemented using diff --git a/ice-9/threads.scm b/ice-9/threads.scm index 86bdae5ef..57e431ae9 100644 --- a/ice-9/threads.scm +++ b/ice-9/threads.scm @@ -72,8 +72,6 @@ -(define future-ref join-thread) - (define ((par-mapper mapper) proc . arglists) (mapper join-thread (apply map |