]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove byte-compile-form-stack backstop
authorMattias Engdegård <mattiase@acm.org>
Fri, 22 Dec 2023 14:46:45 +0000 (15:46 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 22 Dec 2023 14:46:45 +0000 (15:46 +0100)
* lisp/emacs-lisp/cconv.el (cconv-closure-convert):
Eliminate a binding that probably isn't useful after all.

lisp/emacs-lisp/cconv.el

index 1c9b7fc6730a5e86af89f789924ee670a0085232..42bddbb8352d8a72516ed6521a1723f4ff5e6df4 100644 (file)
@@ -123,8 +123,7 @@ using dynamic scoping.
 Returns a form where all lambdas don't have any free variables."
   (let ((cconv--dynbound-variables dynbound-vars)
        (cconv-freevars-alist '())
-       (cconv-var-classification '())
-        (byte-compile-form-stack byte-compile-form-stack))
+       (cconv-var-classification '()))
     ;; Analyze form - fill these variables with new information.
     (cconv-analyze-form form '())
     (setq cconv-freevars-alist (nreverse cconv-freevars-alist))