*** empty log message ***
authorMarius Vollmer <mvo@zagadka.de>
Sat, 12 Jan 2002 17:52:34 +0000 (17:52 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Sat, 12 Jan 2002 17:52:34 +0000 (17:52 +0000)
NEWS
ice-9/ChangeLog

diff --git a/NEWS b/NEWS
index c881aff..69e639c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -20,6 +20,12 @@ debugging evaluator gives better error messages.
 
 * Changes to Scheme functions and syntax
 
+** pretty-print has more options.
+
+The function pretty-print from the (ice-9 pretty-print) module can now
+also be invoked with keyword arguments that control things like
+maximum output width.  See its online documentation.
+
 ** Variables have no longer a special behavior for `equal?'.
 
 Previously, comparing two variables with `equal?' would recursivly
index 7c08c74..94548f5 100644 (file)
@@ -1,7 +1,15 @@
+2002-01-12  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       More options for pretty-print.  Thanks to Matthias Köppe!
+       
+       * pretty-print.scm (generic-write): New per-line-prefix argument.
+       (pretty-print): Check whether the new keyword argument style is
+       used and dispatch to pretty-print-with-keys accordingly.
+
 2001-11-27  Marius Vollmer  <mvo@zagadka.ping.de>
 
-       * format.scm (string-index, list-head): Removed, we already these
-       in the core.
+       * format.scm (string-index, list-head): Removed, we already have
+       these in the core.
 
 2001-11-06  Marius Vollmer  <mvo@zagadka.ping.de>