Ian Lynagh | 2 Jan 2011 22:32
Picon
Gravatar

patch applied (packages/unix): Proper autoconf test for sem_close's library; fixes trac #4523

Sat Jan  1 12:11:50 PST 2011  Ian Lynagh <igloo <at> earth.li>
  * Proper autoconf test for sem_close's library; fixes trac #4523

    M ./configure.ac -12 +3
    M ./unix.buildinfo.in -3 +1

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/unix;a=darcs_commitdiff;h=20110101201150-3fd76-05e50f38f9bda9921f371f6d0d0f91ddc659de57.gz
Ross Paterson | 3 Jan 2011 19:58
Picon
Favicon

patch applied (packages/base): Add Applicative instances for ST monads (proposal #4455)

Mon Jan  3 10:57:22 PST 2011  Ross Paterson <ross <at> soi.city.ac.uk>
  * Add Applicative instances for ST monads (proposal #4455)

  patch from Bas van Dijk

    M ./Control/Applicative.hs +10

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/base;a=darcs_commitdiff;h=20110103185722-b47d3-db7d5652112035953d7754f8fe27fc47446fd588.gz
Ross Paterson | 3 Jan 2011 20:44
Picon
Favicon

patch applied (packages/base): indentation tweaks, re-order exports

Mon Jan  3 11:42:06 PST 2011  Ross Paterson <ross <at> soi.city.ac.uk>
  * indentation tweaks, re-order exports

    M ./Control/Arrow.hs -109 +110

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/base;a=darcs_commitdiff;h=20110103194206-b47d3-dff59a8fdfe82e8b05d7da3158cfea3173a48b8c.gz
Ross Paterson | 3 Jan 2011 20:52
Picon
Favicon

patch applied (packages/base): indentation tweaks (whitespace only)

Mon Jan  3 11:52:01 PST 2011  Ross Paterson <ross <at> soi.city.ac.uk>
  * indentation tweaks (whitespace only)

    M ./Control/Applicative.hs -75 +76
    M ./Control/Category.hs -6 +6
    M ./Data/Foldable.hs -84 +86
    M ./Data/Traversable.hs -48 +46

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/base;a=darcs_commitdiff;h=20110103195201-b47d3-0d27b3e8d3221ba352c96b9b1f2952c32d565665.gz
Simon Marlow | 7 Jan 2011 11:14
Picon

patch applied (packages/base): fix #4876

Thu Jan  6 07:46:54 PST 2011  Simon Marlow <marlowsd <at> gmail.com>
  * fix #4876

    M ./Control/Concurrent/SampleVar.hs -1 +1

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/base;a=darcs_commitdiff;h=20110106154654-12142-fc3d5fe45ddb1a286ab6016fd1b0d385ed6503db.gz
Ian Lynagh | 7 Jan 2011 16:22
Picon
Gravatar

patch applied (ghc-7.0/packages/base): fix #4876

Thu Jan  6 07:46:54 PST 2011  Simon Marlow <marlowsd <at> gmail.com>
  * fix #4876

    M ./Control/Concurrent/SampleVar.hs -1 +1

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=ghc-7.0/packages/base;a=darcs_commitdiff;h=20110106154654-12142-fc3d5fe45ddb1a286ab6016fd1b0d385ed6503db.gz
Ross Paterson | 7 Jan 2011 17:19
Picon
Favicon

patch applied (packages/containers): hoist constant parameter

Fri Jan  7 07:50:12 PST 2011  Ross Paterson <ross <at> soi.city.ac.uk>
  * hoist constant parameter

    M ./Data/Map.hs -8 +7

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/containers;a=darcs_commitdiff;h=20110107155012-b47d3-548dba5f902cf0ab976ea39ddeb6764815aad7ef.gz
Ian Lynagh | 8 Jan 2011 14:40
Picon
Gravatar

patch applied (packages/filepath): Fix warning

Sat Jan  8 04:32:23 PST 2011  Ian Lynagh <igloo <at> earth.li>
  * Fix warning

    M ./System/FilePath/Internal.hs -3 +3

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/filepath;a=darcs_commitdiff;h=20110108123223-3fd76-cd0fd3f67e2b6bbeebadb0d1174f8891d8d9acf5.gz
Ian Lynagh | 8 Jan 2011 14:40
Picon
Gravatar

patch applied (packages/filepath): normalise trailing dot

Thu Dec  2 22:04:44 PST 2010  Conrad Parker <conrad <at> metadecks.org>
  * normalise trailing dot

  This is version 2 of a patch for ticket #3975

  This patch modifles normalise to treat paths with a trailing dot as the
  corresponding directory: the trailing . is stripped, and the pathSeparator
  is appended to the result of joining path components.

  The special case of all path components being "." is handled first, replacing
  the existing special case test for paths with a leading dot. Dots are now
  dropped consistently for all path components.

  Additional tests are provided for:

      normalise "./." == "./"
      normalise "bob/fred/." == "bob/fred/"

    M ./System/FilePath/Internal.hs -4 +13

View patch online:
http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=packages/filepath;a=darcs_commitdiff;h=20101203060444-4b390-27a2dff9e22ff29236ded6ab72bc32571b453438.gz
Ian Lynagh | 8 Jan 2011 15:08
Picon
Gravatar

Re: patch applied (packages/containers): hoist constant parameter

On Fri, Jan 07, 2011 at 08:19:20AM -0800, Ross Paterson wrote:
> Fri Jan  7 07:50:12 PST 2011  Ross Paterson <ross <at> soi.city.ac.uk>
>   * hoist constant parameter

This makes findIndex and lookupIndex non-strict in k, which I guess
wasn't deliberate?

Thanks
Ian

Gmane