From 6cca28afb01964634955f9abeea311d59fc57c3d Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Fri, 16 Apr 2010 00:28:07 +0000 Subject: [PATCH] code/print.lisp: o WITH-STANDARD-IO-SYNTAX needs to use the standard pprint dispatch table. general-info/release-20b.txt: o Update --- code/print.lisp | 4 +++- general-info/release-20b.txt | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index be5c652cd..a7933dcf9 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.127 2010/03/19 15:18:59 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.128 2010/04/16 00:28:07 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -91,6 +91,7 @@ *PRINT-LEVEL* NIL *PRINT-LINES* NIL *PRINT-MISER-WIDTH* NIL + *PRINT-PPRINT-DISPATCH* The standard pprint dispatch table *PRINT-PRETTY* NIL *PRINT-RADIX* NIL *PRINT-READABLY* T @@ -114,6 +115,7 @@ (*print-level* nil) (*print-lines* nil) (*print-miser-width* nil) + (*print-pprint-dispatch* (copy-pprint-dispatch nil)) (*print-pretty* nil) (*print-radix* nil) (*print-readably* t) diff --git a/general-info/release-20b.txt b/general-info/release-20b.txt index d1c8316c7..6782aad82 100644 --- a/general-info/release-20b.txt +++ b/general-info/release-20b.txt @@ -45,8 +45,11 @@ New in this release: translation (done by machine). * ANSI compliance fixes: - - COMPILE will update the macro-function if the specified names a - macro. (Previously, the fdefinition of the name was set.) + - COMPILE will update the macro-function if the specified name + names a macro. (Previously, the fdefinition of the name was + set.) + - WITH-STANDARD-IO-SYNTAX uses the standard pprint dispatch table + now instead of the current table. * Bugfixes: - On Unicode builds, printing of '|\|| and '|`| was incorrect -- GitLab