Browse Source

Fix predicate

master
10sr 6 years ago
parent
commit
109a25fdc4
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      emacs.el

+ 2
- 2
emacs.el View File

@@ -2024,8 +2024,8 @@ Return that buffer."
(cl-assert (string= path
(expand-file-name path)))
(when (cl-loop for re in recently-excludes
if (string-match re path) return t
finally return nil)
if (string-match re path) return nil
finally return t)
(recently-reload)
(let* ((l (copy-list recently-list))
(l (delete path


Loading…
Cancel
Save