[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote 89a6f7c8c2 5/9: Fix bug to make denote-sort-dire
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote 89a6f7c8c2 5/9: Fix bug to make denote-sort-dired exclude files matching regexp (see a701764) |
Date: |
Wed, 4 Dec 2024 09:58:04 -0500 (EST) |
branch: externals/denote
commit 89a6f7c8c20638f9bdf10a795f1aca2c3f6710b9
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Fix bug to make denote-sort-dired exclude files matching regexp (see
a701764)
---
denote-sort.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/denote-sort.el b/denote-sort.el
index 704cfa7b4b..3ea9760396 100644
--- a/denote-sort.el
+++ b/denote-sort.el
@@ -292,7 +292,7 @@ When called from Lisp, the arguments are a string, a symbol
among
nil))
(exclude-rx (or exclude-regexp nil)))
(if-let* ((default-directory (denote-directory))
- (files (denote-sort-get-directory-files files-matching-regexp
component reverse-sort exclude-rx))
+ (files (denote-sort-get-directory-files files-matching-regexp
component reverse-sort nil exclude-rx))
;; NOTE 2023-12-04: Passing the FILES-MATCHING-REGEXP as
;; buffer-name produces an error if the regexp contains a
;; wildcard for a directory. I can reproduce this in emacs
- [elpa] externals/denote updated (7f4a66d802 -> de786b5e8f), ELPA Syncer, 2024/12/04
- [elpa] externals/denote 4205708b2c 3/9: Document in the manual denote-sort-dired-extra-prompts new exclude-regexp symbol, ELPA Syncer, 2024/12/04
- [elpa] externals/denote d6b3269a17 8/9: Merge branch 'not-regexp', ELPA Syncer, 2024/12/04
- [elpa] externals/denote 663e6e0206 2/9: Document denote-directory-files EXCLUDE-REGEXP in the manual, ELPA Syncer, 2024/12/04
- [elpa] externals/denote a701764b0e 1/9: Start implementing not-regexp feature to exclude those files, ELPA Syncer, 2024/12/04
- [elpa] externals/denote 821095844c 4/9: Clarify the wording about default behaviour of denote-sort-dired command, ELPA Syncer, 2024/12/04
- [elpa] externals/denote 89a6f7c8c2 5/9: Fix bug to make denote-sort-dired exclude files matching regexp (see a701764),
ELPA Syncer <=
- [elpa] externals/denote a703f2b686 6/9: Implement WORK-IN-PROGRESS support for :not-regexp to omit files in Org dynamic blocks, ELPA Syncer, 2024/12/04
- [elpa] externals/denote fba0bb2650 7/9: Document the :not-regexp parameter of the Org dynamic blocks, ELPA Syncer, 2024/12/04
- [elpa] externals/denote de786b5e8f 9/9: Define helper function to parse rx, ELPA Syncer, 2024/12/04