diff --git a/code/print.lisp b/code/print.lisp index be5c652cdcbd60ae7c2b1e1a0e5e2d844582001b..a7933dcf9f23a6e930d0bf3c1e7c8d4c796f2367 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 d1c8316c71fabb4e86f5256f783344929a3a09e0..6782aad82357cfb1454632fa02d331fa0b2a2f19 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