aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/language
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2001-12-16 05:33:14 +0000
committerStefan Monnier <[email protected]>2001-12-16 05:33:14 +0000
commitda490c954ed55117b71f673e857d48bc42e92ef2 (patch)
tree5816faacf7000f49c7b95e528cf6d7286c011cc8 /lisp/language
parent39af220ea37c99f09c51eb7fba99a3d6f0ac64ec (diff)
(mapthread): Make a closure.
Diffstat (limited to 'lisp/language')
-rw-r--r--lisp/language/ind-util.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/language/ind-util.el b/lisp/language/ind-util.el
index de1ca127f5..bc72638c11 100644
--- a/lisp/language/ind-util.el
+++ b/lisp/language/ind-util.el
@@ -200,7 +200,7 @@ FUNCTION will be called 15 times."
(lambda (x)
(apply
'mapthread
- (lambda (&rest y) (apply function x y))
+ `(lambda (&rest y) (apply ',function x y))
seqrest))
seq1)
(mapcar function seq1)))