highlighting-kate 0.5.0.2 → 0.5.0.3
raw patch · 3 files changed
+14/−3 lines, 3 filesdep ~pcre-lightPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: pcre-light
API changes (from Hackage documentation)
Files
- Text/Highlighting/Kate/Common.hs +1/−1
- changelog +11/−0
- highlighting-kate.cabal +2/−2
Text/Highlighting/Kate/Common.hs view
@@ -203,7 +203,7 @@ matchRegex :: Regex -> String -> KateParser (Maybe [String]) #ifdef _PCRE_LIGHT-matchRegex r s = match r s [exec_notempty]+matchRegex r s = return $ match r s [exec_notempty] #else matchRegex r s = case unsafePerformIO (regexec r s) of Right (Just (_, mat, _ , capts)) -> return $ Just (mat : capts)
changelog view
@@ -1,3 +1,14 @@+highlighting-kate 0.5.0.3 (12 Feb 2012)++ * Fixed compilation with the 'pcre-light' flag.++highlighting-kate 0.5.0.2 (08 Feb 2012)++ * Fixed bug with lookahead parsers.+ Previously they didn't consume input, which caused an error+ starting with parsec 3.1.2 -- even though in fact there was+ no threat of infinite looping.+ highlighting-kate 0.5.0.1 (31 Jan 2012) * Give table.sourceCode width of 100%, for consistency
highlighting-kate.cabal view
@@ -1,5 +1,5 @@ Name: highlighting-kate-Version: 0.5.0.2+Version: 0.5.0.3 Cabal-Version: >= 1.6 Build-Type: Simple Category: Text@@ -142,7 +142,7 @@ else Build-Depends: base < 3 if flag(pcre-light)- Build-depends: pcre-light+ Build-depends: pcre-light >= 4.0 && < 4.1 cpp-options: -D_PCRE_LIGHT else Build-depends: regex-pcre-builtin