[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote f89a0533f8 3/3: Adjust indentation of denote--di
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote f89a0533f8 3/3: Adjust indentation of denote--directory-all-files-recursively |
Date: |
Tue, 16 May 2023 12:57:46 -0400 (EDT) |
branch: externals/denote
commit f89a0533f8d2ff9da270b81a9c1d3c5905d9e87b
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Adjust indentation of denote--directory-all-files-recursively
---
denote.el | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/denote.el b/denote.el
index bdbb7ba502..8ce13e0083 100644
--- a/denote.el
+++ b/denote.el
@@ -721,17 +721,17 @@ FILE must be an absolute path."
Avoids traversing dotfiles (unconditionally) and whatever matches
`denote-excluded-directories-regexp'."
(directory-files-recursively
- (denote-directory)
- directory-files-no-dot-files-regexp
- :include-directories
- (lambda (f)
- (cond
- ((string-match-p "\\`\\." f) nil)
- ((string-match-p "/\\." f) nil)
- ((denote--exclude-directory-regexp-p f) nil)
- ((file-readable-p f))
- (t)))
- :follow-symlinks))
+ (denote-directory)
+ directory-files-no-dot-files-regexp
+ :include-directories
+ (lambda (f)
+ (cond
+ ((string-match-p "\\`\\." f) nil)
+ ((string-match-p "/\\." f) nil)
+ ((denote--exclude-directory-regexp-p f) nil)
+ ((file-readable-p f))
+ (t)))
+ :follow-symlinks))
(defun denote-directory-files ()
"Return list of absolute file paths in variable `denote-directory'.