From: Mattias EngdegÄrd Date: Fri, 22 Dec 2023 14:46:45 +0000 (+0100) Subject: Remove byte-compile-form-stack backstop X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9370bc9d1a10e67d4ac0d79e31b4abab8427d752;p=emacs.git Remove byte-compile-form-stack backstop * lisp/emacs-lisp/cconv.el (cconv-closure-convert): Eliminate a binding that probably isn't useful after all. --- diff --git a/lisp/emacs-lisp/cconv.el b/lisp/emacs-lisp/cconv.el index 1c9b7fc6730..42bddbb8352 100644 --- a/lisp/emacs-lisp/cconv.el +++ b/lisp/emacs-lisp/cconv.el @@ -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))