Remove byte-compile-form-stack backstop

* lisp/emacs-lisp/cconv.el (cconv-closure-convert):
Eliminate a binding that probably isn't useful after all.
This commit is contained in:
Mattias Engdegård 2023-12-22 15:46:45 +01:00
parent 61190b5146
commit 9370bc9d1a

View 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))