*** empty log message ***
[bpt/guile.git] / NEWS
diff --git a/NEWS b/NEWS
index 0253d3f..cea8c58 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -26,6 +26,26 @@ Command line history length is now controlled by the readline option
 
 * Changes to Scheme functions and syntax
 
+** The range of logand, logior, logxor, logtest, and logbit? have changed.
+
+These functions now operate on numbers in the range of a C unsigned
+long.
+
+These functions used to operate on numbers in the range of a C signed
+long; however, this seems inappropriate, because Guile integers don't
+overflow.
+
+** All builtins now print as primitives.
+Previously builtin procedures not belonging to the fundamental subr
+types printed as #<compiled closure #<primitive-procedure gsubr-apply>>.
+Now, they print as #<primitive-procedure NAME>.
+
+** Backtraces slightly more intelligible.
+gsubr-apply and macro transformer application frames no longer appear
+in backtraces.
+
+* Changes to Scheme functions and syntax
+
 ** New functions: delq1!, delv1!, delete1!
 These procedures behave similar to delq! and friends but delete only
 one object if at all.
@@ -42,10 +62,10 @@ read again in last-in first-out order.
 Version of `map' which guarantees that the procedure is applied to the
 lists in serial order.
 
-** New syntax: sequence->list BODY1 ...
+** New syntax: collect BODY1 ...
 Version of `begin' which returns a list of the results of the body
 forms instead of the result of the last body form.  In contrast to
-`begin', sequence->list allows an empty body.
+`begin', `collect' allows an empty body.
 
 ** New functions: read-history FILENAME, write-history FILENAME
 Read/write command line history from/to file.  Returns #t on success