branch: externals/denote commit 3a3cc6603d33ef6d6dc34bb724340206a1c3d9a4 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Use denote-sequence-get-all-files instead of its helper (extend 7d4c194) --- denote-sequence.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/denote-sequence.el b/denote-sequence.el index dba4a6b68f..eb963c721e 100644 --- a/denote-sequence.el +++ b/denote-sequence.el @@ -352,7 +352,7 @@ With optional FILES, operate on them, else use the return value of (when-let* ((file-sequence (denote-sequence-file-p file)) ((string-prefix-p sequence file-sequence))) file)) - (denote-sequence--get-files files)))) + (denote-sequence-get-all-files files)))) (defun denote-sequence-get-all-files-with-max-depth (depth &optional files) "Return all files with sequence depth up to DEPTH (inclusive). @@ -365,14 +365,14 @@ With optional FILES, operate on them, else use the return value of (components (denote-sequence-split sequence)) ((>= depth (length components)))) file)) - (denote-sequence--get-files files)))) + (denote-sequence-get-all-files files)))) (defun denote-sequence-get-all-sequences (&optional files) "Return all sequences in `denote-directory-files'. With optional FILES return all sequences among them instead. A sequence is a Denote signature that conforms with `denote-sequence-p'." - (delq nil (mapcar #'denote-sequence-file-p (denote-sequence--get-files files)))) + (delq nil (mapcar #'denote-sequence-file-p (denote-sequence-get-all-files files)))) (defun denote-sequence-get-all-sequences-with-prefix (sequence &optional sequences) "Get all sequences which extend SEQUENCE.