[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote 9b2cf81054: Make denote-link--map-over-notes les
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote 9b2cf81054: Make denote-link--map-over-notes less strict about what it matches |
Date: |
Thu, 26 Dec 2024 09:57:58 -0500 (EST) |
branch: externals/denote
commit 9b2cf810542fe20148c16571b18bd3d47be3cb13
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Make denote-link--map-over-notes less strict about what it matches
This is in response to issue 503, where Oliver Epper encountered an
error while trying to link files which are not plain text:
<https://github.com/protesilaos/denote/issues/503>.
---
denote.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/denote.el b/denote.el
index 1948b0ca55..34d9e7b633 100644
--- a/denote.el
+++ b/denote.el
@@ -5163,8 +5163,8 @@ inserts links with just the identifier."
nil t))))
(defun denote-link--map-over-notes ()
- "Return list of `denote-file-is-note-p' from Dired marked items."
- (seq-filter #'denote-file-is-note-p (dired-get-marked-files)))
+ "Return list of `denote-file-has-denoted-filename-p' from Dired marked
items."
+ (seq-filter #'denote-file-has-denoted-filename-p (dired-get-marked-files)))
;;;###autoload
(defun denote-link-dired-marked-notes (files buffer &optional id-only)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/denote 9b2cf81054: Make denote-link--map-over-notes less strict about what it matches,
ELPA Syncer <=