From 141ed2c4bc6ab702cf5ed7b591a32f6937aeeecf Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 5 Aug 2018 16:29:03 +0200 Subject: [PATCH] [Projects] Fix typo in function call --- site-lisp/db-projects.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-projects.el b/site-lisp/db-projects.el index 99a6143..e5a128c 100644 --- a/site-lisp/db-projects.el +++ b/site-lisp/db-projects.el @@ -55,7 +55,7 @@ "Archive existing project." (interactive (list (completing-read "Short Name: " (projects-existing-projects) nil t))) - (unless (projects/project-exists-p short-name) + (unless (projects-project-exists-p short-name) (user-error "Project %s does not exist, exiting" short-name)) (unless (file-exists-p projects-archive-directory) (make-directory projects-archive-directory))