From bdcc61247a540699851eb73ea9d4ef3d0a06a92a Mon Sep 17 00:00:00 2001 From: ookami Date: Wed, 31 Aug 2022 12:10:42 +0200 Subject: [PATCH] Fix semantic-find-file-noselect binding of recentf-exclude * lisp/cedet/semantic/fw.el (semantic-find-file-noselect): recentf-exclude should be a list (bug#57489). Copyright-paperwork-exempt: yes --- lisp/cedet/semantic/fw.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/cedet/semantic/fw.el b/lisp/cedet/semantic/fw.el index 113323cb339..9917c4c5be6 100644 --- a/lisp/cedet/semantic/fw.el +++ b/lisp/cedet/semantic/fw.el @@ -339,7 +339,7 @@ calling this one." "Call `find-file-noselect' with various features turned off. Use this when referencing a file that will be soon deleted. FILE, NOWARN, RAWFILE, and WILDCARDS are passed into `find-file-noselect'." - (let* ((recentf-exclude #'always) + (let* ((recentf-exclude '(always)) ;; This is a brave statement. Don't waste time loading in ;; lots of modes. Especially decoration mode can waste a lot ;; of time for a buffer we intend to kill. -- 2.39.5