X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcode%2Fcondition.lisp;h=39b93b075cc0ae3cdf8e58317605f1df95557779;hb=e67cc0f952040723f7d0f37ddb88fe895f4b1464;hp=e281b2ac9e1df704d4453a40a0b41bd64f20682b;hpb=ca267caa3bdb897a93a1e69ae7300ba3ba5d391f;p=sbcl.git diff --git a/src/code/condition.lisp b/src/code/condition.lisp index e281b2a..39b93b0 100644 --- a/src/code/condition.lisp +++ b/src/code/condition.lisp @@ -19,7 +19,7 @@ ;;; generally a PITA, so whatever the failure encountered when ;;; wondering about FILE-POSITION within a condition printer, 'tis ;;; better silently to give up than to try to complain. -(defun file-position-or-nil-for-error (stream) +(defun file-position-or-nil-for-error (stream &optional (pos nil posp)) ;; Arguably FILE-POSITION shouldn't be signalling errors at all; but ;; "NIL if this cannot be determined" in the ANSI spec doesn't seem ;; absolutely unambiguously to prohibit errors when, e.g., STREAM @@ -29,7 +29,9 @@ ;; defsystemish operation where the ERROR-STREAM had been CL:CLOSEd, ;; I think by nonlocally exiting through a WITH-OPEN-FILE, by the ;; time an error was reported.) - (ignore-errors (file-position stream))) + (if posp + (ignore-errors (file-position stream pos)) + (ignore-errors (file-position stream)))) ;;;; the CONDITION class @@ -773,6 +775,8 @@ .~:@>" '((fmakunbound 'compile)))))) +(define-condition simple-storage-condition (storage-condition simple-condition) ()) + ;;; a condition for use in stubs for operations which aren't supported ;;; on some platforms ;;; @@ -1115,6 +1119,13 @@ SB-EXT:PACKAGE-LOCKED-ERROR-SYMBOL.")) (define-condition timeout (serious-condition) ()) +(define-condition declaration-type-conflict-error (reference-condition + simple-error) + () + (:default-initargs + :format-control "symbol ~S cannot be both the name of a type and the name of a declaration" + :references (list '(:ansi-cl :section (3 8 21))))) + ;;; Single stepping conditions (define-condition step-condition ()