]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix semantic-find-file-noselect binding of recentf-exclude
authorookami <mail@ookami.one>
Wed, 31 Aug 2022 10:10:42 +0000 (12:10 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 31 Aug 2022 10:11:43 +0000 (12:11 +0200)
* 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

index 113323cb33924063b0eb47774068800fead6cc81..9917c4c5be6fd90c0a4b8975c91a612f2119f5bb 100644 (file)
@@ -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.