diff options
author | ookami <mail@ookami.one> | 2022-08-31 12:10:42 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-31 12:11:43 +0200 |
commit | bdcc61247a540699851eb73ea9d4ef3d0a06a92a (patch) | |
tree | 099d3dadfe00a0c4479d6cd244d0fabd8bf5a9f3 /lisp/cedet | |
parent | 136495f178ccd36b23ffc347fe2b6680fd689e34 (diff) | |
download | emacs-bdcc61247a540699851eb73ea9d4ef3d0a06a92a.tar.gz emacs-bdcc61247a540699851eb73ea9d4ef3d0a06a92a.tar.bz2 emacs-bdcc61247a540699851eb73ea9d4ef3d0a06a92a.zip |
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
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/semantic/fw.el | 2 |
1 files changed, 1 insertions, 1 deletions
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. |