Skip to content
Snippets Groups Projects
Commit 6cca28af authored by rtoy's avatar rtoy
Browse files

code/print.lisp:

o WITH-STANDARD-IO-SYNTAX needs to use the standard pprint dispatch
  table.

general-info/release-20b.txt:
o Update
parent a735122e
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment