From 87a231071f70034f350084a585661dd20db8945b Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Fri, 1 Nov 2024 12:35:04 +0100 Subject: [PATCH] Fix bug#74091 Avoid messing with 'deactivate-mark' --- lisp/emacs-lisp/subr-x.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el index 5b47deb880e..b5cbe28afad 100644 --- a/lisp/emacs-lisp/subr-x.el +++ b/lisp/emacs-lisp/subr-x.el @@ -361,7 +361,7 @@ automatically killed, which means that in a such case (erase-buffer)) (delete-all-overlays) (let (change-major-mode-hook) - (kill-all-local-variables t)) + (kill-all-local-variables)) ;; Make the buffer available again. (push buffer work-buffer--list))) ;; If the maximum number of reusable work buffers is exceeded, kill -- 2.39.5