[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)
- [elpa] externals/denote updated (941303ee23 -> 68121fdf0c), ELPA Syncer, 2024/01/25
- [elpa] externals/denote fa5548f766 4/6: Make silo commands not require superfluous prefix argument, ELPA Syncer, 2024/01/25
- [elpa] externals/denote 886c24db07 1/6: Move helper function before its first call, ELPA Syncer, 2024/01/25
- [elpa] externals/denote 984c3feb24 2/6: Make denote-rename-buffer do nothing if there is no underlying file, ELPA Syncer, 2024/01/25
- [elpa] externals/denote 68121fdf0c 6/6: Document in the manual fix for needless C-u in silos (per commit fa5548f), ELPA Syncer, 2024/01/25
- [elpa] externals/denote 5eabd7745b 5/6: Clarify type of SILO argument when called from Lisp,
ELPA Syncer <=
- [elpa] externals/denote 1bd8e36f2f 3/6: Define compatibility aliases for all history variables (don't use 'define-obsolete-variable-alias'), ELPA Syncer, 2024/01/25