emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/denote ef033a5084 09/10: Fix mistake made by the previo


From: ELPA Syncer
Subject: [elpa] externals/denote ef033a5084 09/10: Fix mistake made by the previous commit
Date: Mon, 18 Nov 2024 03:58:00 -0500 (EST)

branch: externals/denote
commit ef033a50840b916e523d48b98a4eff8933ea89c4
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Fix mistake made by the previous commit
---
 denote-silo-extras.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/denote-silo-extras.el b/denote-silo-extras.el
index f52fc22017..d6a8d580d9 100644
--- a/denote-silo-extras.el
+++ b/denote-silo-extras.el
@@ -90,8 +90,8 @@ When called from Lisp, SILO is a file system path to a 
directory that
 conforms with `denote-silo-extras-path-is-silo-p'."
   (interactive (list (denote-silo-extras-directory-prompt)))
   (denote-silo-extras-with-silo silo
-                                (let ((denote-directory silo))
-                                  (call-interactively #'denote))))
+    (let ((denote-directory silo))
+      (call-interactively #'denote))))
 
 ;;;###autoload
 (defun denote-silo-extras-open-or-create (silo)
@@ -102,8 +102,8 @@ When called from Lisp, SILO is a file system path to a 
directory that
 conforms with `denote-silo-extras-path-is-silo-p'."
   (interactive (list (denote-silo-extras-directory-prompt)))
   (denote-silo-extras-with-silo silo
-                                (let ((denote-directory silo))
-                                  (call-interactively 
#'denote-open-or-create))))
+    (let ((denote-directory silo))
+      (call-interactively #'denote-open-or-create))))
 
 ;;;###autoload
 (defun denote-silo-extras-select-silo-then-command (silo command)
@@ -118,8 +118,8 @@ conforms with `denote-silo-extras-path-is-silo-p'."
     (denote-silo-extras-directory-prompt)
     (denote-command-prompt)))
   (denote-silo-extras-with-silo silo
-                                (let ((denote-directory silo))
-                                  (call-interactively command))))
+    (let ((denote-directory silo))
+      (call-interactively command))))
 
 (provide 'denote-silo-extras)
 ;;; denote-silo-extras.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]