From 67ec37f1785a8b51185c9d0151b3e56a130b9852 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 29 May 2002 13:27:04 +0000 Subject: [PATCH] [project @ 2002-05-29 13:27:04 by simonmar] fix case of markup inside bird tracks. --- Text/Regex/Posix.hsc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Text/Regex/Posix.hsc b/Text/Regex/Posix.hsc index e2f243b..08565b5 100644 --- a/Text/Regex/Posix.hsc +++ b/Text/Regex/Posix.hsc @@ -80,10 +80,12 @@ regexec :: Regex -- ^ Compiled regular expression -- ^ Returns: 'Nothing' if the regex did not match the -- string, or: -- - -- > 'Just' (everything before match, - -- > matched portion, - -- > everything after match, - -- > subexpression matches) + -- @ + -- 'Just' (everything before match, + -- matched portion, + -- everything after match, + -- subexpression matches) + -- @ regexec (Regex regex_fptr) str = do withCString str $ \cstr -> do -- 1.7.10.4