packages feed

mps 2009.4.20 → 2009.4.21

raw patch · 3 files changed

+9/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.markdown view
@@ -1,3 +1,10 @@+2009.4.21+---------++### Fix++* starts_with returns true for the same string+ 2009.4.20 --------- 
mps.cabal view
@@ -1,5 +1,5 @@ Name:                 mps-Version:              2009.4.20+Version:              2009.4.21 Build-type:           Simple Synopsis:             message passing style helpers Description:          message passing style helpers
src/MPS/Snippets.hs view
@@ -356,8 +356,8 @@ lower = map toLower upper = map toUpper -starts_with _ [] = False starts_with [] _ = True+starts_with _ [] = False starts_with (x:xs) (y:ys) | x == y = starts_with xs ys                           | otherwise = False