branch: externals/denote commit eb2edfdb04a424ff1bdaafd7943c1e070f5c4e08 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Reposition alias inside the file --- denote.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/denote.el b/denote.el index 348cd87877..da8874b4f2 100644 --- a/denote.el +++ b/denote.el @@ -1236,17 +1236,17 @@ the function `denote-retrieve-or-create-file-identifier'." (match-string 0 file)) (error "Cannot find `%s' as a file with a Denote identifier" file))) +(define-obsolete-function-alias + 'denote--retrieve-filename-identifier + 'denote-retrieve-filename-identifier + "1.0.0") + (defun denote-retrieve-filename-signature (file) "Extract signature from FILE name." (when (denote-file-has-signature-p file) (string-match denote-signature-regexp file) (match-string 1 file))) -(define-obsolete-function-alias - 'denote--retrieve-filename-identifier - 'denote-retrieve-filename-identifier - "1.0.0") - (defun denote-retrieve-or-create-file-identifier (file &optional date) "Return FILE identifier, generating one if appropriate.