From 6213498a59211a842d2f537515420325a1472918 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Fri, 16 Apr 2010 12:54:53 +0000 Subject: [PATCH] PRINC-TO-STRING should bind *PRINT-READABLY* to NIL. code/print.lisp: o Add optional *PRINT-READABLY* argument to STRINGIFY-OBJECT. o Update PRINC-TO-STRING with new docstring and call STRINGIFY-OBJECT with *PRINT-READABLY* bound to NIL. general-info/release-20b.txt: o Update --- code/print.lisp | 9 +++++---- general-info/release-20b.txt | 2 ++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index a7933dcf9..3ea77a7bc 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 6782aad82..fafb4a4fd 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 -- GitLab