branch: externals/denote
commit 679c13c5d98c4a0ea1568e957c0679e32b06d242
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Make stylistic change to denote-link--map-over-notes for readability
---
denote.el | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/denote.el b/denote.el
index 35ceb08d03..648b943a12 100644
--- a/denote.el
+++ b/denote.el
@@ -6520,9 +6520,11 @@ contents, not file names. Optional ID-ONLY has the same
meaning as in
(defun denote-link--map-over-notes ()
"Return list of `denote-file-has-denoted-filename-p' from Dired marked
items."
- (seq-filter (lambda (file) (and (denote-file-has-denoted-filename-p file)
- (denote-file-has-identifier-p file)))
- (dired-get-marked-files)))
+ (seq-filter
+ (lambda (file)
+ (and (denote-file-has-denoted-filename-p file)
+ (denote-file-has-identifier-p file)))
+ (dired-get-marked-files)))
;;;###autoload
(defun denote-link-dired-marked-notes (files buffer &optional id-only)