From a30a76f5b91d5df4d1731036200c6c0b47b84a75 Mon Sep 17 00:00:00 2001 From: Francesco Ceccon Date: Tue, 24 Jun 2014 15:37:36 +0200 Subject: [PATCH] Remove unused local bindings from common-dylan. --- sources/dylan/list.dylan | 1 - 1 file changed, 1 deletion(-) diff --git a/sources/dylan/list.dylan b/sources/dylan/list.dylan index 7b036b477..ea9f86071 100644 --- a/sources/dylan/list.dylan +++ b/sources/dylan/list.dylan @@ -849,7 +849,6 @@ define sealed method concatenate-as-two if (empty?(first-seq)) l else - let revcpy = #(); for (e in first-seq, revcpy = #() then pair(e, revcpy)) finally let result = l;