diff --git a/code/print.lisp b/code/print.lisp
index a7933dcf9f23a6e930d0bf3c1e7c8d4c796f2367..3ea77a7bc7fb6624afb72297c7b07aa74ad0c679 100644
--- a/code/print.lisp
+++ b/code/print.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/code/print.lisp,v 1.128 2010/04/16 00:28:07 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.129 2010/04/16 12:54:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -216,8 +216,8 @@
 
 (defun princ-to-string (object)
   _N"Returns the printed representation of OBJECT as a string with
-  slashification off."
-  (stringify-object object nil))
+  slashification off and readability off."
+  (stringify-object object nil nil))
 
 ;;; STRINGIFY-OBJECT -- Internal.
 ;;;
@@ -226,7 +226,8 @@
 ;;;
 (defvar *string-output-streams* ())
 ;;;
-(defun stringify-object (object &optional (*print-escape* *print-escape*))
+(defun stringify-object (object &optional (*print-escape* *print-escape*)
+			                  (*print-readably* *print-readably*))
   (let ((stream (if *string-output-streams*
 		    (pop *string-output-streams*)
 		    (make-string-output-stream))))
diff --git a/general-info/release-20b.txt b/general-info/release-20b.txt
index 6782aad82357cfb1454632fa02d331fa0b2a2f19..fafb4a4fd5e42cd5957d07011a0308c759d934a8 100644
--- a/general-info/release-20b.txt
+++ b/general-info/release-20b.txt
@@ -50,6 +50,8 @@ New in this release:
       set.)
     - WITH-STANDARD-IO-SYNTAX uses the standard pprint dispatch table
       now instead of the current table.
+    - PRINC-TO-STRING binds *PRINT-READABLY* to NIL as required.
+      Previously, it used the current value of *PRINT-READABLY*.
 
   * Bugfixes:
     - On Unicode builds, printing of '|\|| and '|`| was incorrect