X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftarget-error.lisp;h=be8c31901e0a5d51a4d7e34d0a9f4efb168f3172;hb=cee8ef591040db9a79cdd19297867672a9529051;hp=85b2215fb2867bfaafdd3064e8aacedc8e9f9876;hpb=b93cd5f21f8161783f8d40fb6ade28aa04ecf193;p=sbcl.git diff --git a/src/code/target-error.lisp b/src/code/target-error.lisp index 85b2215..be8c319 100644 --- a/src/code/target-error.lisp +++ b/src/code/target-error.lisp @@ -131,27 +131,25 @@ with that condition (or with no condition) will be returned." (args (interactive-restart-arguments real-restart))) (apply (restart-function real-restart) args))) -(defun assert-error (assertion places datum &rest arguments) +(defun assert-error (assertion args-and-values places datum &rest arguments) (let ((cond (if datum - (coerce-to-condition datum - arguments - 'simple-error - 'error) - (make-condition 'simple-error - :format-control "The assertion ~S failed." - :format-arguments (list assertion))))) + (coerce-to-condition + datum arguments 'simple-error 'error) + (make-condition + 'simple-error + :format-control "~@" + :format-arguments (list assertion args-and-values))))) (restart-case (error cond) (continue () - :report (lambda (stream) - (format stream "Retry assertion") - (if places - (format stream - " with new value~P for ~{~S~^, ~}." - (length places) - places) - (format stream "."))) - nil)))) + :report (lambda (stream) + (format stream "Retry assertion") + (if places + (format stream " with new value~P for ~{~S~^, ~}." + (length places) places) + (format stream "."))) + nil)))) ;;; READ-EVALUATED-FORM is used as the interactive method for restart cases ;;; setup by the Common Lisp "casing" (e.g., CCASE and CTYPECASE) macros @@ -161,6 +159,7 @@ with that condition (or with no condition) will be returned." (apply #'format *query-io* (if promptp prompt-control "~&Type a form to be evaluated: ") prompt-args) + (finish-output *query-io*) (list (eval (read *query-io*)))) (defun check-type-error (place place-value type type-string)