branch: master
commit e793f3c4ae45469198ec54ada25183e3bdb3b298
Author: Ian D <[email protected]>
Commit: Ian D <[email protected]>
Fixed bugs from last commit
* org-edna.el (org-edna--syntax-error): Back-quote arguments
(org-edna--print-syntax-error): Fixed name.
---
org-edna.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/org-edna.el b/org-edna.el
index 152cc6a..370b50a 100644
--- a/org-edna.el
+++ b/org-edna.el
@@ -42,9 +42,9 @@ properties used during actions or conditions."
:type 'boolean)
(defmacro org-edna--syntax-error (msg form pos)
- `(signal 'invalid-read-syntax (list :msg msg :form form :pos pos)))
+ `(signal 'invalid-read-syntax (list :msg ,msg :form ,form :pos ,pos)))
-(defun org-edna--handle-syntax-error (error-plist)
+(defun org-edna--print-syntax-error (error-plist)
(let ((msg (plist-get error-plist :msg))
(form (plist-get error-plist :form))
(pos (plist-get error-plist :pos)))