0.9.5.14:
authorJuho Snellman <jsnell@iki.fi>
Sat, 1 Oct 2005 13:01:11 +0000 (13:01 +0000)
committerJuho Snellman <jsnell@iki.fi>
Sat, 1 Oct 2005 13:01:11 +0000 (13:01 +0000)
Explicitly bind *PRINT-PRETTY* to T when printing the symbol
        conflict resolution prompt, to make the output less ugly in
        Slime (sldb binds *PRINT-PRETTY* to NIL).

src/code/target-package.lisp
version.lisp-expr

index 673d170..c9ff756 100644 (file)
@@ -756,7 +756,8 @@ error if any of PACKAGES is not a valid package designator."
       :interactive
       (lambda ()
         (let* ((len (length symbols))
-               (nlen (length (write-to-string len :base 10))))
+               (nlen (length (write-to-string len :base 10)))
+               (*print-pretty* t))
           (format *query-io* "~&~@<Select a symbol to be made accessible in ~
                               package ~A:~2I~@:_~{~{~V,' D. ~S~}~@:_~}~@:>"
                 (package-name package)
index 1d4f1ce..5cded11 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.5.13"
+"0.9.5.14"