From 7f6dd4e2b0f78083fc296589bb1a298bb4bac355 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Wed, 6 Nov 2024 11:13:15 +0200 Subject: validate-custom-values: Update error messages. --- gnosis.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnosis.el') diff --git a/gnosis.el b/gnosis.el index fb1c556..79de8e7 100644 --- a/gnosis.el +++ b/gnosis.el @@ -2055,7 +2055,8 @@ SUSPEND: Suspend note, 0 for unsuspend, 1 for suspend" (memq (nth 0 entry) '(:deck :tag)) (stringp (nth 1 entry)) (listp (nth 2 entry))) ; Ensure the third element is a plist - (error "Each entry should a have :deck or :tag keyword, a string, and a plist of custom values")) + (error + "Each entry should a have :deck or :tag keyword, a string, and a plist of custom values")) (let ((proto (plist-get (nth 2 entry) :proto)) (anagnosis (plist-get (nth 2 entry) :anagnosis)) (epignosis (plist-get (nth 2 entry) :epignosis)) @@ -2063,7 +2064,7 @@ SUSPEND: Suspend note, 0 for unsuspend, 1 for suspend" (amnesia (plist-get (nth 2 entry) :amnesia)) (lethe (plist-get (nth 2 entry) :lethe))) (unless (and (listp proto) (cl-every #'integerp proto)) - (error "Proto must be a list of interval integer values")) + (error "Proto must be a list of integer values")) (unless (or (null anagnosis) (integerp anagnosis)) (error "Anagnosis should be an integer")) (unless (or (null epignosis) (numberp epignosis)) -- cgit v1.2.3