From df37fa6cae81bfb6640577fe42b46966cfd8c089 Mon Sep 17 00:00:00 2001 From: sperber Date: Wed, 11 Jul 2001 11:30:38 +0000 Subject: [PATCH] String delim matchers are supposed to be interpreted in POSIX flat syntax. --- scsh/fr.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scsh/fr.scm b/scsh/fr.scm index a50782f..157cdbe 100644 --- a/scsh/fr.scm +++ b/scsh/fr.scm @@ -69,7 +69,7 @@ (define (->delim-matcher x) (if (procedure? x) x ; matcher proc - (let ((re (cond ((string? x) (re-string x)) + (let ((re (cond ((string? x) (posix-string->regexp x)) ((char-set? x) (re-char-set x)) ((char? x) (re-string (string x))) ((regexp? x) x)