From 9370bc9d1a10e67d4ac0d79e31b4abab8427d752 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Fri, 22 Dec 2023 15:46:45 +0100 Subject: [PATCH] Remove byte-compile-form-stack backstop * lisp/emacs-lisp/cconv.el (cconv-closure-convert): Eliminate a binding that probably isn't useful after all. --- lisp/emacs-lisp/cconv.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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)) -- 2.39.5