branch: externals/denote-sequence commit dd3893bc5f56ccd6f686dd3f5bb2c95c4228fcd7 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Use expand-file-name instead of concat in denote-sequence-file-prompt --- denote-sequence.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/denote-sequence.el b/denote-sequence.el index 64c4797ab8..abc572aa75 100644 --- a/denote-sequence.el +++ b/denote-sequence.el @@ -713,7 +713,7 @@ completion candidates. Else use `denote-sequence-get-all-files'." (denote--completion-table 'file relative-files) nil :require-match nil 'denote-sequence-file-history))) - (concat (denote-directory) input) + (expand-file-name input (denote-directory)) (error "There are no sequence notes in the `denote-directory'"))) ;;;###autoload