wscl
wscl copied to clipboard
restart-case typo
example reads:
(restart-case
(handler-bind ((error #'(lambda (c)
(declare (ignore condition))
(invoke-restart 'my-restart 7))))
(error "Foo."))
(my-restart (&optional v) v))
should pick just one of 'c' and 'condition'. And probably ditch #'
Thanks. Applied in https://github.com/s-expressionists/dpans/commit/8c75767627d41db43ec36109905bffa333546c91 (except the #' part since we only address errors for now).
I just realised the indentation of the function body is also wrong (does that count as an error?)