summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/bytecomp.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index e14ecc608c7..f37d7489e9a 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -2745,7 +2745,7 @@ If FORM is a lambda or a macro, byte-compile it as a function."
;; containing the args and any closed-over variables.
(and lexical-binding
(byte-compile-make-lambda-lexenv
- fun
+ bytecomp-fun
byte-compile-lexical-environment)))
(is-closure
;; This is true if we should be making a closure instead of
@@ -2804,7 +2804,7 @@ If FORM is a lambda or a macro, byte-compile it as a function."
(let ((code (byte-compile-lambda form add-lambda)))
(if (byte-compile-closure-code-p code)
(byte-compile-make-closure code)
- ;; A simple lambda is just a constant
+ ;; A simple lambda is just a constant.
(byte-compile-constant code))))
(defun byte-compile-constants-vector ()