0.9.8.11:
authorGabor Melis <mega@hotpop.com>
Thu, 5 Jan 2006 14:04:23 +0000 (14:04 +0000)
committerGabor Melis <mega@hotpop.com>
Thu, 5 Jan 2006 14:04:23 +0000 (14:04 +0000)
  * fix compiler looping on #p"" when compiled with high debug
    settings (thanks to Xophe support)
  * add the tests missed in .10

src/compiler/ir1tran-lambda.lisp
tests/symbol.pure.lisp [new file with mode: 0644]
version.lisp-expr

index decdfce..34a4cb0 100644 (file)
                                  (policy *lexenv* (>= insert-debug-catch 2)))
                             `((catch (locally
                                          (declare (optimize (insert-step-conditions 0)))
-                                    (make-symbol "SB-DEBUG-CATCH-TAG"))
+                                       ;; Using MAKE-SYMBOL would lead
+                                       ;; to recursive disaster.
+                                       (%make-symbol "SB-DEBUG-CATCH-TAG"))
                                 ,@forms))
                             forms))
                  (forms (if (eq result-type *wild-type*)
diff --git a/tests/symbol.pure.lisp b/tests/symbol.pure.lisp
new file mode 100644 (file)
index 0000000..b7f3f26
--- /dev/null
@@ -0,0 +1,21 @@
+;;;; miscellaneous tests of SYMBOL-related stuff
+
+;;;; This software is part of the SBCL system. See the README file for
+;;;; more information.
+;;;;
+;;;; While most of SBCL is derived from the CMU CL system, the test
+;;;; files (like this one) were written from scratch after the fork
+;;;; from CMU CL.
+;;;;
+;;;; This software is in the public domain and is provided with
+;;;; absolutely no warranty. See the COPYING and CREDITS files for
+;;;; more information.
+
+(in-package "CL-USER")
+
+;;; Reported by Paul F. Dietz
+(with-test (:name (:symbol :non-simple-string-name))
+  (let ((sym (make-symbol (make-array '(1) :element-type 'character
+                                      :adjustable t :initial-contents "X"))))
+    (assert (simple-string-p (symbol-name sym)))
+    (print sym (make-broadcast-stream))))
index 3a61685..e6a68d3 100644 (file)
@@ -17,4 +17,4 @@
 ;;; 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".)
-"0.9.8.10"
+"0.9.8.11"