1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 08:20:20 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2002-01-12 17:52:34 +00:00
parent f5259dd399
commit 0e6f77756c
2 changed files with 16 additions and 2 deletions

6
NEWS
View file

@ -20,6 +20,12 @@ debugging evaluator gives better error messages.
* Changes to Scheme functions and syntax * 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?'. ** Variables have no longer a special behavior for `equal?'.
Previously, comparing two variables with `equal?' would recursivly Previously, comparing two variables with `equal?' would recursivly

View 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> 2001-11-27 Marius Vollmer <mvo@zagadka.ping.de>
* format.scm (string-index, list-head): Removed, we already these * format.scm (string-index, list-head): Removed, we already have
in the core. these in the core.
2001-11-06 Marius Vollmer <mvo@zagadka.ping.de> 2001-11-06 Marius Vollmer <mvo@zagadka.ping.de>