From 097158c936276d6074ac4f6131b04470091cbd89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 25 Sep 2008 21:36:14 +0200 Subject: [PATCH] Enclose `regexp.test' in a module. * test-suite/tests/regexp.test: Add `define-module' clause. --- test-suite/tests/regexp.test | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test-suite/tests/regexp.test b/test-suite/tests/regexp.test index 0ca0203b6..15f77a34c 100644 --- a/test-suite/tests/regexp.test +++ b/test-suite/tests/regexp.test @@ -18,9 +18,11 @@ ;;;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;;;; Boston, MA 02110-1301 USA -(use-modules (test-suite lib) - (ice-9 regex)) +(define-module (test-suite test-regexp) + #:use-module (test-suite lib) + #:use-module (ice-9 regex)) + ;;; Run a regexp-substitute or regexp-substitute/global test, once ;;; providing a real port and once providing #f, requesting direct ;;; string output.