CMUCL commit: src (code/print.lisp general-info/release-20b.txt)

Raymond Toy rtoy at common-lisp.net
Fri Apr 16 02:28:07 CEST 2010


    Date: Thursday, April 15, 2010 @ 20:28:07
  Author: rtoy
    Path: /project/cmucl/cvsroot/src

Modified: code/print.lisp general-info/release-20b.txt

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(-)


Index: src/code/print.lisp
diff -u src/code/print.lisp:1.127 src/code/print.lisp:1.128
--- src/code/print.lisp:1.127	Fri Mar 19 11:18:59 2010
+++ src/code/print.lisp	Thu Apr 15 20:28:07 2010
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /project/cmucl/cvsroot/src/code/print.lisp,v 1.127 2010-03-19 15:18:59 rtoy Exp $")
+  "$Header: /project/cmucl/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)
Index: src/general-info/release-20b.txt
diff -u src/general-info/release-20b.txt:1.14 src/general-info/release-20b.txt:1.15
--- src/general-info/release-20b.txt:1.14	Thu Apr  1 10:11:24 2010
+++ src/general-info/release-20b.txt	Thu Apr 15 20:28:07 2010
@@ -45,8 +45,11 @@
       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



More information about the cmucl-commit mailing list