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

*** empty log message ***

This commit is contained in:
Mikael Djurfeldt 1999-08-24 02:22:40 +00:00
parent 8a30733e8d
commit 6822fe53c9
2 changed files with 24 additions and 0 deletions

19
NEWS
View file

@ -6,6 +6,25 @@ Please send Guile bug reports to bug-guile@gnu.org.
Changes since Guile 1.3.2:
* Changes to Scheme functions and syntax
** Print-state handling has been made more transparent
Under certain circumstances, ports are represented as a port with an
associated print state. Earlier, this pair was represented as a pair
(see "Some magic has been added to the printer" below). It is now
indistinguishable (almost; see `get-print-state') from a port on the
user level.
*** New function: port-with-print-state OUTPUT-PORT PRINT-STATE
Return a new port with the associated print state PRINT-STATE.
*** New function: get-print-state OUTPUT-PORT
Return the print state associated with this port if it exists,
otherwise return #f.
Changes since Guile 1.3:

View file

@ -1,3 +1,8 @@
1999-08-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
* boot-9.scm: Removed old style hooks.
(inherit-print-state): Rwwritten to use port-with-print-state.
1999-08-20 James Blandy <jimb@mule.m17n.org>
Remove support for the #/ path list syntax entirely.