From b02db9ee94af4331376f704cb4e0eb8b1f91c21c Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 5 Feb 2008 09:59:25 +0000 Subject: [PATCH] fix default value for regexp-quote svn: r8535 --- collects/scribblings/reference/regexps.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/reference/regexps.scrbl b/collects/scribblings/reference/regexps.scrbl index 6c63f7fd55..e19a29b231 100644 --- a/collects/scribblings/reference/regexps.scrbl +++ b/collects/scribblings/reference/regexps.scrbl @@ -178,8 +178,8 @@ syntax (see @secref["regexp-syntax"]). The result can be used with (byte-pregexp #"ap*le") ]} -@defproc*[([(regexp-quote [str string?][case-sensitive? any/c #f]) string?] - [(regexp-quote [bstr bytes?][case-sensitive? any/c #f]) bytes?])]{ +@defproc*[([(regexp-quote [str string?] [case-sensitive? any/c #t]) string?] + [(regexp-quote [bstr bytes?] [case-sensitive? any/c #t]) bytes?])]{ Produces a string or byte string suitable for use with @scheme[regexp] to match the literal sequence of characters in @scheme[str] or