From: ookami Date: Wed, 31 Aug 2022 10:10:42 +0000 (+0200) Subject: Fix semantic-find-file-noselect binding of recentf-exclude X-Git-Tag: emacs-29.0.90~1856^2~819 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bdcc61247a540699851eb73ea9d4ef3d0a06a92a;p=emacs.git 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 --- 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.