guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-219-g7cb11


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-219-g7cb1122
Date: Mon, 30 Jan 2012 20:20:25 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=7cb11224c7f141d25f9468b8e6d51b6a22707fb3

The branch, stable-2.0 has been updated
       via  7cb11224c7f141d25f9468b8e6d51b6a22707fb3 (commit)
       via  b46999779867a1edff0e5bc3e2d2dd2fadf4a139 (commit)
       via  ffd901eb5ee4a8257aa1e660cfd434b172c0fead (commit)
      from  e1fbe716e8596b7027af57623ebc72a0c6393187 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7cb11224c7f141d25f9468b8e6d51b6a22707fb3
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 30 20:58:51 2012 +0100

    Amend `NEWS'.
    
    * NEWS: Mention `-Wformat' change.  Remove intermediate/minor bug fixes.

commit b46999779867a1edff0e5bc3e2d2dd2fadf4a139
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 30 20:57:42 2012 +0100

    Remove stale test file.
    
    * test-suite/tests/srfi-42.test: Delete "tmp1" at the end.

commit ffd901eb5ee4a8257aa1e660cfd434b172c0fead
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 30 20:57:16 2012 +0100

    doc: Add "warnings" to the concept index.
    
    * doc/ref/api-evaluation.texi (Compilation): Add "warnings" to the
      concept index.

-----------------------------------------------------------------------

Summary of changes:
 NEWS                          |   12 ++++++------
 doc/ref/api-evaluation.texi   |    1 +
 test-suite/tests/srfi-42.test |    4 +++-
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/NEWS b/NEWS
index 0edcef7..f6cb30e 100644
--- a/NEWS
+++ b/NEWS
@@ -124,6 +124,11 @@ This procedure initializes a random seed using good random 
sources
 available on your platform, such as /dev/urandom.  See "Random Number
 Generation" in the manual, for more.
 
+** Warn about unsupported `simple-format' options.
+
+The `-Wformat' compilation option now reports unsupported format options
+passed to `simple-format'.
+
 ** Manual updates
 
 Besides the sections already mentioned, the following manual sections
@@ -158,7 +163,6 @@ Search the manual for these identifiers and modules, for 
more.
 ** Add deprecated shim for `scm_display_error' with stack as first argument.
 ** Add warnings for unsupported `simple-format' options.
 ** Allow overlapping regions to be passed to `bytevector-copy!'.
-** Avoid calling `u32_conv_from_encoding' on the null string.
 ** Better function prologue disassembly
 ** Compiler: fix miscompilation of (values foo ...) in some contexts.
 ** Compiler: fix serialization of #nil-terminated lists.
@@ -168,12 +172,10 @@ Search the manual for these identifiers and modules, for 
more.
 ** Don't leak file descriptors when mmaping objcode.
 ** Empty substrings no longer reference the original stringbuf.
 ** FFI: Fix `set-pointer-finalizer!' to leave the type cell unchanged.
-** FFI: Fix signed/unsigned pointer mismatches in implementation.
 ** FFI: Hold a weak reference to the CIF made by `procedure->pointer'.
 ** FFI: Hold a weak reference to the procedure passed to `procedure->pointer'.
 ** FFI: Properly unpack small integer return values in closure call.
 ** Fix R6RS `fold-left' so the accumulator is the first argument.
-** Fix `validate-target' in (system base target).
 ** Fix bit-set*! bug from 2005.
 ** Fix bug in `make-repl' when `lang' is actually a <language>.
 ** Fix bugs related to mutation, the null string, and shared substrings.
@@ -188,19 +190,17 @@ Search the manual for these identifiers and modules, for 
more.
 ** HTTP: Permit non-date values for Expires header.
 ** HTTP: `write-request-line' writes absolute paths, not absolute URIs.
 ** Hack the port-column of current-output-port after printing a prompt.
-** Have `cpu-word-size' error out on unknown CPUs; add support for MIPSEL.
 ** Make sure `regexp-quote' tests use Unicode-capable string ports.
 ** Peval: Fix bugs in the new optimizer.
-** Peval: fold (values FOO) to FOO in more cases
 ** Statistically unique marks and labels, for robust hygiene across sessions.
 ** Web: Allow URIs with empty authorities, like "file:///etc/hosts".
 ** `,language' at REPL sets the current-language fluid.
 ** `primitive-load' returns the value(s) of the last expression.
 ** `scm_from_stringn' always returns unique strings.
 ** `scm_i_substring_copy' tries to narrow the substring.
-** guile-readline: Clean `.go' files.
 ** i18n: Fix gc_malloc/free mismatch on non-GNU systems.
 
+
 Changes in 2.0.3 (since 2.0.2):
 
 * Speed improvements
diff --git a/doc/ref/api-evaluation.texi b/doc/ref/api-evaluation.texi
index 8c41d1e..640f6d5 100644
--- a/doc/ref/api-evaluation.texi
+++ b/doc/ref/api-evaluation.texi
@@ -645,6 +645,7 @@ name is as for @code{compile-file} (see below).
 
 @item -W @var{warning}
 @itemx address@hidden
address@hidden warnings, compiler
 Emit warnings of type @var{warning}; use @code{--warn=help} for a list
 of available warnings and their description.  Currently recognized
 warnings include @code{unused-variable}, @code{unused-toplevel},
diff --git a/test-suite/tests/srfi-42.test b/test-suite/tests/srfi-42.test
index 5417de0..1de337e 100644
--- a/test-suite/tests/srfi-42.test
+++ b/test-suite/tests/srfi-42.test
@@ -3,7 +3,7 @@
 ;;; Examples for Eager Comprehensions in [outer..inner|expr]-Convention
 ;;; ===================================================================
 ;;;
-;;; Copyright (C) 2010 Free Software Foundation, Inc.
+;;; Copyright (C) 2010, 2012 Free Software Foundation, Inc.
 ;;; Copyright (c) 2007 Sebastian Egner
 ;;;
 ;;; This code is based on the file examples.scm in the reference
@@ -616,3 +616,5 @@
      (close-output-port f))
    (read-lines "tmp1") )
  => (list-ec (:char-range c #\0 #\9) (string c #\newline)) )
+
+(false-if-exception (delete-file "tmp1"))


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]