From e3d2330df7ad676d876d6740e42fb4f0003694fe Mon Sep 17 00:00:00 2001 From: "Sunrin SHIMURA (keen)" <3han5chou7@gmail.com> Date: Mon, 11 May 2015 16:05:40 +0900 Subject: [PATCH] Use strict ERE --- contrib/10.regexp/t/test.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/10.regexp/t/test.scm b/contrib/10.regexp/t/test.scm index 3c90493f..45da3bcf 100644 --- a/contrib/10.regexp/t/test.scm +++ b/contrib/10.regexp/t/test.scm @@ -8,5 +8,5 @@ (test '("a" "b" "c" "d") (regexp-split (regexp ",") "a,b,c,d")) (test '("a" "b" "c" "d") (regexp-split (regexp "\\.+") "a.b....c.....d")) (test "a b c d" (regexp-replace (regexp ",") "a,b,c,d" " ")) -(test "newline tab space " (regexp-replace (regexp "\\s") "newline +(test "newline tab space " (regexp-replace (regexp "[\n\t ]") "newline tab space " " "))