1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

(regexp-substitute/global): Do not test with empty regexp. Empty

regexps do not work on NetBSD.
This commit is contained in:
Marius Vollmer 2002-05-06 19:32:20 +00:00
parent 8f16fe5a70
commit 0a77048bfd

View file

@ -68,7 +68,6 @@
(with-test-prefix (object->string args)
(apply vary-port regexp-substitute/global expected args)))
(try "" "" "" "")
(try "hi" "a(x*)b" "ab" "hi")
(try "" "a(x*)b" "ab" 1)
(try "xx" "a(x*)b" "axxb" 1)