From ed3e116f807c314097f8fb344e87e3eaa730faaf Mon Sep 17 00:00:00 2001 From: Nicholas Vollmer Date: Sun, 10 May 2020 17:07:50 -0400 Subject: [PATCH] Apply args correctly --- org-roam-macs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-roam-macs.el b/org-roam-macs.el index 610cecb..1f58e5a 100644 --- a/org-roam-macs.el +++ b/org-roam-macs.el @@ -62,7 +62,7 @@ to look. (defun org-roam-message (format-string &rest args) "Pass FORMAT-STRING and ARGS to `message' when `org-roam-verbose' is t." (when org-roam-verbose - (message (concat "(org-roam) " format-string) args))) + (apply #'message `(,(concat "(org-roam) " format-string) ,@args)))) (provide 'org-roam-macs)