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.0-176-g62ef2


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-176-g62ef23c
Date: Mon, 11 Apr 2011 15:21:13 +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=62ef23cbb828accf1f5b9622ff17775aa539d354

The branch, stable-2.0 has been updated
       via  62ef23cbb828accf1f5b9622ff17775aa539d354 (commit)
      from  b9e22602bb9c7d82500e4e5612bf80e478e28b8c (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 62ef23cbb828accf1f5b9622ff17775aa539d354
Author: Andy Wingo <address@hidden>
Date:   Mon Apr 11 17:21:20 2011 +0200

    fix reader.test for --disable-deprecated
    
    * test-suite/tests/reader.test: Fix deprecated tests; begin-deprecated
      was splicing in expression context before, which is a no-no.

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

Summary of changes:
 test-suite/tests/reader.test |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/test-suite/tests/reader.test b/test-suite/tests/reader.test
index 7027d32..f350e73 100644
--- a/test-suite/tests/reader.test
+++ b/test-suite/tests/reader.test
@@ -430,12 +430,13 @@
   (pass-if (equal? (read-string "#{}#") '#{}#))
   (pass-if (equal? (read-string "#{a}#") 'a))
   (pass-if (equal? (read-string "#{a b}#") '#{a b}#))
-  (begin-deprecated
-   (pass-if (equal? (read-string "#{a\\ b}#") '#{a b}#)))
   (pass-if-exception "#{" exception:eof-in-symbol
                      (read-string "#{"))
   (pass-if (equal? (read-string "#{a\\x20;b}#") '#{a b}#)))
 
+(begin-deprecated
+ (with-test-prefix "deprecated #{}# escapes"
+   (pass-if (equal? (read-string "#{a\\ b}#") '#{a b}#))))
 
 ;;; Local Variables:
 ;;; eval: (put 'with-read-options 'scheme-indent-function 1)


hooks/post-receive
-- 
GNU Guile



reply via email to

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