Propagate errors from dblock filter functions correctly

This commit is contained in:
Chris Barrett
2022-08-25 11:37:42 +12:00
parent 0aa620453d
commit 015789e2da

View File

@@ -185,7 +185,9 @@ their blocks updated automatically."
(condition-case err (condition-case err
(progn ,@body) (progn ,@body)
(error (error
"Error evaluating %s form: %s" keyword (error-message-string err)))))) (error "Error evaluating %s form: %s"
keyword
(error-message-string err)))))))
(cond (cond
((null form) ((null form)
nil) nil)