From 1168c9b6da7c17168149ebaceb64e073a9eed2d9 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 11 Jun 2020 08:39:12 +0200 Subject: [PATCH] (fix): Fix syntax for calling compiled versions of functions (#791) --- org-roam.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org-roam.el b/org-roam.el index 11ceb81..e02a54d 100644 --- a/org-roam.el +++ b/org-roam.el @@ -858,9 +858,9 @@ This face is used for links without a destination." map) (if org-roam-backlinks-mode (add-hook 'org-open-at-point-functions - 'org-roam-open-at-point nil 'local) + #'org-roam-open-at-point nil 'local) (remove-hook 'org-open-at-point-functions - 'org-roam-open-at-point 'local))) + #'org-roam-open-at-point 'local))) (defun org-roam--in-buffer-p () "Return t if in the Org-roam buffer."