1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-17 19:52:26 +02:00

Changes from arch/CVS synchronization

This commit is contained in:
Ludovic Courtès 2006-10-26 07:25:24 +00:00
parent a5dc80238f
commit d7bfc0c998
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-10-26 Ludovic Courtès <ludovic.courtes@laas.fr>
* tests/srfi-14.test (Latin-1)[char-set:punctuation]: Fixed a
typo: `thrown' instead of `throw'.
2006-10-05 Kevin Ryde <user42@zip.com.au> 2006-10-05 Kevin Ryde <user42@zip.com.au>
* tests/ftw.test: New file. * tests/ftw.test: New file.

View file

@ -290,7 +290,7 @@
(pass-if "char-set:punctuation (membership)" (pass-if "char-set:punctuation (membership)"
(if (not %latin1) (if (not %latin1)
(thrown 'unresolved) (throw 'unresolved)
(let ((punctuation (char-set->list char-set:punctuation))) (let ((punctuation (char-set->list char-set:punctuation)))
(every? (lambda (8-bit-char) (every? (lambda (8-bit-char)
(memq 8-bit-char punctuation)) (memq 8-bit-char punctuation))