From 5b10f833033f7c66d56de6bf713288cb78df4cb6 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 16 Oct 2021 12:27:20 +0200 Subject: [PATCH] Fix typo --- site-lisp/db-org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index efd942e..04e3a6d 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -392,7 +392,7 @@ tag PERIODIC." "Clock in org mode task as given by TASK-ID." (let ((location (org-id-find task-id 'marker))) (if (null location) - (user-error "Invalid location give: %s»" task-id) + (user-error "Invalid location given: «%s»" task-id) (org-with-point-at location (org-clock-in)) (org-save-all-org-buffers))))