From 6f54165637547ef5b4c3ad5ae9f744cc7759b4ac Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sun, 21 Mar 2021 17:22:36 -0700 Subject: when skipping failed changes, print the error Signed-off-by: Sean Whitton --- src/propspec.lisp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/propspec.lisp') diff --git a/src/propspec.lisp b/src/propspec.lisp index 6a06d1f..39b9d48 100644 --- a/src/propspec.lisp +++ b/src/propspec.lisp @@ -281,7 +281,10 @@ expression." (defmacro with-skip-failed-changes (&body forms) `(handler-bind ((failed-change (lambda (c) - (declare (ignore c)) + (with-indented-inform + (informat t + (simple-condition-format-control c) + (simple-condition-format-arguments c))) (invoke-restart 'skip-property)))) ,@forms)) -- cgit v1.2.3