* Selecting CONTINUE will clobber the existing package, not leave
it alone.
;;;; -*- coding: utf-8; fill-column: 78 -*-
+changes relative to sbcl-1.0.36:
+ * bug fix: correct restart text for the continuable error in MAKE-PACKAGE.
+
changes in sbcl-1.0.37 relative to sbcl-1.0.36:
* enhancement: Backtrace from THROW to uncaught tag on x86oids now shows
stack frame thrown from.
;; make the package.
(when (find-package name)
;; ANSI specifies that this error is correctable.
- (cerror "Leave existing package alone."
+ (cerror "Clobber existing package."
"A package named ~S already exists" name))
(let* ((name (package-namify name))
(package (internal-make-package
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.37"
+"1.0.37.1"