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

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

[elpa] externals/denote 5eabd7745b 5/6: Clarify type of SILO argument wh


From: ELPA Syncer
Subject: [elpa] externals/denote 5eabd7745b 5/6: Clarify type of SILO argument when called from Lisp
Date: Thu, 25 Jan 2024 00:57:44 -0500 (EST)

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

    Clarify type of SILO argument when called from Lisp
---
 denote-silo-extras.el | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/denote-silo-extras.el b/denote-silo-extras.el
index 31ef6460e8..74e9b50152 100644
--- a/denote-silo-extras.el
+++ b/denote-silo-extras.el
@@ -67,7 +67,9 @@ as the variable `denote-directory'."
 ;;;###autoload
 (defun denote-silo-extras-create-note (silo)
   "Select SILO and run `denote' in it.
-SILO is a file path from `denote-silo-extras-directories'."
+SILO is a file path from `denote-silo-extras-directories'.
+
+When called from Lisp, SILO is a file system path to a directory."
   (interactive (list (denote-silo-extras--directory-prompt)))
   (let ((denote-user-enforced-denote-directory silo))
     (call-interactively #'denote)))
@@ -75,7 +77,9 @@ SILO is a file path from `denote-silo-extras-directories'."
 ;;;###autoload
 (defun denote-silo-extras-open-or-create (silo)
   "Select SILO and run `denote-open-or-create' in it.
-SILO is a file path from `denote-silo-extras-directories'."
+SILO is a file path from `denote-silo-extras-directories'.
+
+When called from Lisp, SILO is a file system path to a directory."
   (interactive (list (denote-silo-extras--directory-prompt)))
   (let ((denote-user-enforced-denote-directory silo))
     (call-interactively #'denote-open-or-create)))
@@ -84,7 +88,9 @@ SILO is a file path from `denote-silo-extras-directories'."
 (defun denote-silo-extras-select-silo-then-command (silo command)
   "Select SILO and run Denote COMMAND in it.
 SILO is a file path from `denote-silo-extras-directories', while
-COMMAND is one among `denote-silo-extras-commands'."
+COMMAND is one among `denote-silo-extras-commands'.
+
+When called from Lisp, SILO is a file system path to a directory."
   (interactive
    (list
     (denote-silo-extras--directory-prompt)



reply via email to

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