summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/subr.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index bc5f8943fb4..f52264d3158 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -541,8 +541,7 @@ was called."
(compiler-macro
(lambda (_)
`(lambda (&rest args2)
- ,(let ((l (length args)))
- `(apply ,fun ,@args args2))))))
+ ,`(apply ,fun ,@args args2)))))
(lambda (&rest args2)
(apply fun (append args args2))))