From 236e65f8929436e0931518be1a5fb05dcb0326fd Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Tue, 25 Jan 2005 15:40:44 +0000
Subject: [PATCH] Use WITH-STANDARD-IO-SYNTAX when creating the string for
 arglists, in case the user has set some printer vars to something too short. 
 SLIME needs this.

From Helmut Eller, cmucl-imp, 2005-01-24.
---
 compiler/entry.lisp | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/compiler/entry.lisp b/compiler/entry.lisp
index d3e118052..45d1bdd84 100644
--- a/compiler/entry.lisp
+++ b/compiler/entry.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/entry.lisp,v 1.11 1994/10/31 04:27:28 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/entry.lisp,v 1.12 2005/01/25 15:40:44 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -52,12 +52,12 @@
     (assert (not (eq args :unspecified)))
     (if (null args)
 	"()"
-	(let ((*print-pretty* t)
-	      (*print-escape* t)
-	      (*print-base* 10)
-	      (*print-radix* nil)
-	      (*print-case* :downcase))
-	  (write-to-string args)))))
+	(let ((package *package*))
+	  (with-standard-io-syntax
+	    (let ((*package* package)
+		  (*print-pretty* t)
+		  (*print-case* :downcase))
+	      (write-to-string args)))))))
   
 
 ;;; Compute-Entry-Info  --  Internal
-- 
GitLab