[ ghc-Bugs-952398 ] Windows compiler assumes (wrongly) TH when using ($)

2004-05-13 Thread SourceForge.net
Bugs item #952398, was opened at 2004-05-12 10:20 Message generated for change (Comment added) made by eivuokko You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=108032aid=952398group_id=8032 Category: Compiler Group: 6.2.1 Status: Open Resolution: None Priority: 5

[ ghc-Bugs-952616 ] dlclose segfaults

2004-05-13 Thread SourceForge.net
Bugs item #952616, was opened at 2004-05-12 16:40 Message generated for change (Comment added) made by volkersf You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=108032aid=952616group_id=8032 Category: libraries/unix Group: 6.2 Status: Pending Resolution: Accepted

[ ghc-Bugs-952616 ] dlclose segfaults

2004-05-13 Thread SourceForge.net
Bugs item #952616, was opened at 2004-05-12 16:40 Message generated for change (Settings changed) made by volkersf You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=108032aid=952616group_id=8032 Category: libraries/unix Group: 6.2 Status: Closed Resolution: Fixed

RE: checking for a working System.Console.Readline

2004-05-13 Thread Simon Peyton-Jones
| One option is to ask ghc-package to list the available packages and | see if readline appears. We're hatching a plan, as part of the library infrastructure project, to do just that. Stay tuned. We should emit a draft spec for comment in a couple of weeks. Simon

Re: checking for a working System.Console.Readline

2004-05-13 Thread Ketil Malde
| readline Since you mention readline - I have a rather tiny nit to pick: ghci happily completes filenames starting with ~ (indicating home directory), but file operations typically don't grok it. As I said, hardly an earth shattering show stopper, but a small wart that might be easy to remove?

Re: checking for a working System.Console.Readline

2004-05-13 Thread David Roundy
On Thu, May 13, 2004 at 04:47:23PM +1000, Bernard James POPE wrote: Hi all, In buddha I've started using System.Console.Readline for the command line (which btw is very nice, thanks to those who made the binding). Buddha uses autconf to configure itself. I want to check whether the host

[Haskell] [bctcs05-info] BCTCS 2005 Announcement

2004-05-13 Thread Graham Hutton
++ ANNOUNCEMENT 21st British Colloquium for Theoretical Computer Science BCTCS 2005 22-24 March 2005 University

Re: [Haskell] generic currying (type classes and functional dependencies)

2004-05-13 Thread Ronny Wichers Schreur
Duncan Coutts writes (to the Haskell Mailing list): I'm trying to write a generic curry ( uncurry) function that works for functions of any arity. See http://www.haskell.org/pipermail/haskell/2003-April/011720.html where oleg presents a (ghc-specific) solution. Cheers, Ronny Wichers Schreur

[Haskell] LAST Call for Papers - MKM 2004 (Bialowieza, Poland)

2004-05-13 Thread Roman Matuszewski
Please post - apologies for multiple copies. We kindly recall you that the deadline for MKM 2004 is approaching MKM 2004 Third International Conference on MATHEMATICAL KNOWLEDGE MANAGEMENT

[Haskell-cafe] Programming style and XML processing in Haskell

2004-05-13 Thread Graham Klyne
After an extended period of procrastination and nipping at the edges of the problem, I feel a need to tackle head on the requirement for a usable XML handling library in Haskell. As far back as 1999, Malcolm Wallace and Colin Runciman observed that Haskell is a very suitable language for XML

Re: [Haskell-cafe] Programming style and XML processing in Haskell

2004-05-13 Thread Duncan Coutts
Something which wasn't mentioned but is quite useful is type-specialised xml parsers. Some tools manipulate xml generically, giving you back some DOM tree which is great if you are writing a general purpose xml parser. However most uses know exactly what DTD/Schema/Type they are dealing with and

[Haskell-cafe] push/enter vs eval/apply question

2004-05-13 Thread 7253146
Hi. I have read part of the paper Making a fast curry. Push/enter vs eval/apply for higher-order languages (Simon Marlow ans Simon Peyton Jones, http://research.microsoft.com/Users/simonpj/papers/eval-apply/eval-apply.ps), where the tradeoffs of both currying models are discused. The paper