branch: externals/denote commit 1203e637168081aa0d593c5ef965900715e4f0fd Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Remove needless interactive declaration from two commands in denote-sequence.el --- denote-sequence.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/denote-sequence.el b/denote-sequence.el index 7131cb226b..793734c214 100644 --- a/denote-sequence.el +++ b/denote-sequence.el @@ -235,7 +235,6 @@ When called from Lisp, SEQUENCE is a string that conforms with `denote-sequence- ;;;###autoload (defun denote-sequence-new-sibling (sequence) "Convenience wrapper of `denote-sequence' to create new sibling of SEQUENCE." - (declare (interactive-only t)) (interactive (list (denote-retrieve-filename-signature (denote-sequence-file-prompt)))) (let* ((new-sequence (denote-sequence-get 'sibling sequence)) (denote-use-signature new-sequence)) @@ -244,7 +243,6 @@ When called from Lisp, SEQUENCE is a string that conforms with `denote-sequence- ;;;###autoload (defun denote-sequence-new-child (sequence) "Convenience wrapper of `denote-sequence' to create new child of SEQUENCE." - (declare (interactive-only t)) (interactive (list (denote-retrieve-filename-signature (denote-sequence-file-prompt)))) (let* ((new-sequence (denote-sequence-get 'child sequence)) (denote-use-signature new-sequence))