From 980a12416bbcadaf37f5aa3a652c478e9283a16d Mon Sep 17 00:00:00 2001 From: Peter Mao Date: Sat, 8 Jul 2023 22:40:34 -0700 Subject: [PATCH 1/2] bugfix - skip filenames w/o extensions --- org-noter-core.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org-noter-core.el b/org-noter-core.el index 293ad28..8ac9408 100644 --- a/org-noter-core.el +++ b/org-noter-core.el @@ -1757,7 +1757,8 @@ can still be initiated from the notes file, but not vice-versa, nor will future renames of the document be synced in the notes file." - (when (and (member-ignore-case (file-name-extension document-path) + (when (and (file-name-extension document-path) + (member-ignore-case (file-name-extension document-path) org-noter--doc-extensions) (not (file-exists-p document-path)) (file-exists-p new-document-path)) From e84c622f0401c97c7d9ed5fa1a0eed229ec6454e Mon Sep 17 00:00:00 2001 From: Peter Mao Date: Mon, 10 Jul 2023 23:04:12 -0700 Subject: [PATCH 2/2] for cask, use melpa rather than melpa-stable tablist was failing to load. --- Cask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cask b/Cask index c224206..e040aaa 100644 --- a/Cask +++ b/Cask @@ -1,5 +1,5 @@ (source gnu) -(source melpa-stable) +(source melpa) (depends-on "buttercup") (depends-on "pdf-tools")