Add `procedure-rename' to the pile of things that are not used.

Closes PR9811 (with no fix it).
This commit is contained in:
Eli Barzilay 2012-02-03 16:37:46 -05:00
parent 456fcd8aeb
commit 1c841e143f

View File

@ -316,9 +316,10 @@
([(arity) (procedure-arity g)]
[(required-kwds allowed-kwds) (procedure-keywords g)]
[(composed)
;; FIXME: would be nice to use `procedure-reduce-arity' and
;; `procedure-reduce-keyword-arity' in the places marked below,
;; but they currently add a significant overhead.
;; FIXME: would be nice to use `procedure-rename',
;; `procedure-reduce-arity' and `procedure-reduce-keyword-arity'
;; in the places marked below, but they currently add a
;; significant overhead.
(if (eq? 1 arity)
(lambda (x) (app f (g x)))
(case-lambda ; <--- here