Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-24 Thread Simon Marlow
Duncan Coutts wrote: On Fri, 2008-11-21 at 14:01 +, Simon Marlow wrote: I propose we do this: * extract the GHCi UI from the GHC package, put it in the ghc-bin package (maybe we should rename this package to ghc-main or something). This removes the editline and bytestring (for

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-24 Thread Simon Marlow
Simon Marlow wrote: I think it's a good idea to avoid variant licenses, especially in libraries. We want it to be easy for someone to know whether they're complying with the licenses for the libraries they depend on, and if those licenses depend on choices made at the time the library was

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-23 Thread Ian Lynagh
On Sat, Nov 22, 2008 at 01:49:43PM +, Duncan Coutts wrote: On Fri, 2008-11-21 at 14:01 +, Simon Marlow wrote: * Move to Haskeline for the default build. We have to bring in terminfo and utf8-string as bootlibs. This gives us line-editing on Windows, and removes

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-22 Thread Duncan Coutts
On Fri, 2008-11-21 at 14:01 +, Simon Marlow wrote: I propose we do this: * extract the GHCi UI from the GHC package, put it in the ghc-bin package (maybe we should rename this package to ghc-main or something). This removes the editline and bytestring (for now) dependencies

ghci-haskeline (was: Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?)

2008-11-21 Thread Judah Jacobson
On Thu, Nov 20, 2008 at 7:16 AM, Ian Lynagh [EMAIL PROTECTED] wrote: Although another option would be to make GHCi a separate (GPL) frontend to the (BSD) GHC API. The only downside is that (with static linking) we have another large binary. Another upside is that other GHC API users don't get

RE: ghci-haskeline (was: Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?)

2008-11-21 Thread Simon Peyton-Jones
| I've actually been experimenting with something similar: | | darcs get http://code.haskell.org/~judah/ghci-haskeline/ | | Current benefits over the readline/editline versions: | - Works on Windows | | I can attest to that. Nice going Judah! | | $ cabal update | $ darcs get

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-21 Thread Jules Bean
Philip K.F. Hölzenspies wrote: On Friday 21 November 2008 10:49:47 Jules Bean wrote: Philip Hölzenspies wrote: Also, there are no de facto escape sequences, because special keys (like function and arrow keys) have different sequences on different terminals. A useful tip that may be useful to

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-21 Thread Duncan Coutts
On Fri, 2008-11-21 at 11:59 +0100, Philip K.F. Hölzenspies wrote: On Friday 21 November 2008 10:49:47 Jules Bean wrote: Something must be very very broken : surely it is not expected behaviour for editline to need configuration in this way? One can call it broken, another will say users

Re: ghci-haskeline (was: Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?)

2008-11-21 Thread Simon Marlow
Judah Jacobson wrote: On Thu, Nov 20, 2008 at 7:16 AM, Ian Lynagh [EMAIL PROTECTED] wrote: Although another option would be to make GHCi a separate (GPL) frontend to the (BSD) GHC API. The only downside is that (with static linking) we have another large binary. Another upside is that other GHC

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-21 Thread Philip K.F. Hölzenspies
On Friday 21 November 2008 10:49:47 Jules Bean wrote: Philip Hölzenspies wrote: Also, there are no de facto escape sequences, because special keys (like function and arrow keys) have different sequences on different terminals. A useful tip that may be useful to include in the wiki is an

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Jason Dagit
On Wed, Nov 19, 2008 at 1:28 AM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Jason Dagit: On Wed, Nov 5, 2008 at 5:36 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Ian Lynagh: On Tue, Nov 04, 2008 at 09:02:12PM -0500, Brandon S. Allbery KF8NH wrote: On 2008 Nov 4, at 20:26,

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Christian Maeder
Jason Dagit wrote: But, I still think I did something wrong because the first thing I tried to build with 6.10 complained that -lgmp was not found. I have checked, it's installed and I saw the ./configure script for the 6.10 installation find it. Actually I have the same problem. I need to

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-21 Thread Simon Marlow
Duncan Coutts wrote: On Thu, 2008-11-20 at 12:51 +, Simon Marlow wrote: Duncan Coutts wrote: What I really think is that we should add back optional readline support. People building closed source ghc binaries would not use it but linux distros could enable it and provide a better out of

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Christian Maeder
Also note that gmp.h will not be found without: export CPATH=/opt/local/include This directory should be part of the include-dirs: for the rts package. And again the file /opt/local/include/gmp.h could be simply copied to prefix/lib/ghc-6.10.1/include/ Sorry for the trouble Christian

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Jason Dagit
On Fri, Nov 21, 2008 at 6:10 AM, Christian Maeder [EMAIL PROTECTED] wrote: Also note that gmp.h will not be found without: export CPATH=/opt/local/include This directory should be part of the include-dirs: for the rts package. And again the file /opt/local/include/gmp.h could be simply

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Gregory Wright
Hi Jason, On Nov 21, 2008, at 8:09 AM, Jason Dagit wrote: On Wed, Nov 19, 2008 at 1:28 AM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Jason Dagit: On Wed, Nov 5, 2008 at 5:36 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Ian Lynagh: On Tue, Nov 04, 2008 at 09:02:12PM -0500,

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Christian Maeder
Jason Dagit wrote: On Fri, Nov 21, 2008 at 6:10 AM, Christian Maeder [EMAIL PROTECTED] wrote: Also note that gmp.h will not be found without: export CPATH=/opt/local/include This directory should be part of the include-dirs: for the rts package. And again the file /opt/local/include/gmp.h

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Jason Dagit
On Fri, Nov 21, 2008 at 6:56 AM, Gregory Wright [EMAIL PROTECTED] wrote: Hi Jason, On Nov 21, 2008, at 8:09 AM, Jason Dagit wrote: On Wed, Nov 19, 2008 at 1:28 AM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Jason Dagit: On Wed, Nov 5, 2008 at 5:36 PM, Manuel M T Chakravarty [EMAIL

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Jason Dagit
On Fri, Nov 21, 2008 at 7:04 AM, Christian Maeder [EMAIL PROTECTED] wrote: Jason Dagit wrote: On Fri, Nov 21, 2008 at 6:10 AM, Christian Maeder [EMAIL PROTECTED] wrote: Also note that gmp.h will not be found without: export CPATH=/opt/local/include This directory should be part of the

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-21 Thread Thorkil Naur
Hello Greg, On Friday 21 November 2008 15:56, Gregory Wright wrote: ... ppc/ Leopard still fails, but I now have an account on a machine that I can use to test and debug. And if you need such an access (now or in the future), please just say the word and you can get access to my PPC

RE: ghci-haskeline (was: Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?)

2008-11-21 Thread John O'Donnell
-Original Message- From: [EMAIL PROTECTED] on behalf of Simon Peyton-Jones Sent: Fri 2008-11-21 10:39 To: Simon Marlow; Judah Jacobson Cc: glasgow-haskell-users@haskell.org Subject: RE: ghci-haskeline (was: Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?) | I've

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-21 Thread Judah Jacobson
On 11/21/08, Duncan Coutts [EMAIL PROTECTED] wrote: On Fri, 2008-11-21 at 11:59 +0100, Philip K.F. Hölzenspies wrote: On Friday 21 November 2008 10:49:47 Jules Bean wrote: Something must be very very broken : surely it is not expected behaviour for editline to need configuration in this

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-21 Thread Judah Jacobson
On 11/21/08, Simon Marlow [EMAIL PROTECTED] wrote: I propose we do this: * extract the GHCi UI from the GHC package, put it in the ghc-bin package (maybe we should rename this package to ghc-main or something). This removes the editline and bytestring (for now) dependencies from the

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-21 Thread Brandon S. Allbery KF8NH
On 2008 Nov 21, at 9:01, Simon Marlow wrote: * extract the GHCi UI from the GHC package, put it in the ghc-bin package (maybe we should rename this package to ghc-main or something). This removes the editline and bytestring (for now) dependencies from the GHC package. * Move to

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-20 Thread Duncan Coutts
On Wed, 2008-11-19 at 20:45 +0100, Philip Hölzenspies wrote: On Nov 19, 2008, at 6:25 PM, Simon Peyton-Jones wrote: Would it be worth adding this hard-won lore somewhere on a Wiki where it can be found later? Dear Simon, all, I don't think logging a specific option on the Wiki is

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-20 Thread Simon Marlow
Duncan Coutts wrote: On Wed, 2008-11-19 at 20:45 +0100, Philip Hölzenspies wrote: On Nov 19, 2008, at 6:25 PM, Simon Peyton-Jones wrote: Would it be worth adding this hard-won lore somewhere on a Wiki where it can be found later? Dear Simon, all, I don't think logging a specific option on

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-20 Thread Duncan Coutts
On Thu, 2008-11-20 at 12:51 +, Simon Marlow wrote: Duncan Coutts wrote: What I really think is that we should add back optional readline support. People building closed source ghc binaries would not use it but linux distros could enable it and provide a better out of the box

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-20 Thread Ian Lynagh
On Thu, Nov 20, 2008 at 01:52:12PM +, Duncan Coutts wrote: My selfish suggestion is that we maintain the readline configuration and let the people who originally wanted editline support do the work to maintain that configuration. Those people are GHC HQ: readline is GPL (not LGPL), so if

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-20 Thread Duncan Coutts
On Thu, 2008-11-20 at 15:16 +, Ian Lynagh wrote: On Thu, Nov 20, 2008 at 01:52:12PM +, Duncan Coutts wrote: My selfish suggestion is that we maintain the readline configuration and let the people who originally wanted editline support do the work to maintain that configuration.

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-20 Thread Ian Lynagh
On Thu, Nov 20, 2008 at 06:43:49PM +, Duncan Coutts wrote: On Thu, 2008-11-20 at 15:16 +, Ian Lynagh wrote: On Thu, Nov 20, 2008 at 01:52:12PM +, Duncan Coutts wrote: My selfish suggestion is that we maintain the readline configuration and let the people who originally

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-19 Thread Manuel M T Chakravarty
Jason Dagit: On Wed, Nov 5, 2008 at 5:36 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Ian Lynagh: On Tue, Nov 04, 2008 at 09:02:12PM -0500, Brandon S. Allbery KF8NH wrote: On 2008 Nov 4, at 20:26, Jason Dagit wrote: On Tue, Nov 4, 2008 at 4:26 PM, Manuel M T Chakravarty [EMAIL

RE: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-19 Thread Simon Peyton-Jones
: Philip K.F. Hölzenspies | Subject: Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility? | | On Fri, 2008-11-07 at 09:14 -0800, Judah Jacobson wrote: | On Fri, Nov 7, 2008 at 4:36 AM, Duncan Coutts | [EMAIL PROTECTED] wrote: | | I get some working and some non-working. Eg

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-19 Thread Philip Hölzenspies
On Nov 19, 2008, at 6:25 PM, Simon Peyton-Jones wrote: Would it be worth adding this hard-won lore somewhere on a Wiki where it can be found later? Dear Simon, all, I don't think logging a specific option on the Wiki is particularly useful (maybe you would have a default editrc file),

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-18 Thread Jason Dagit
On Wed, Nov 5, 2008 at 5:36 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Ian Lynagh: On Tue, Nov 04, 2008 at 09:02:12PM -0500, Brandon S. Allbery KF8NH wrote: On 2008 Nov 4, at 20:26, Jason Dagit wrote: On Tue, Nov 4, 2008 at 4:26 PM, Manuel M T Chakravarty [EMAIL PROTECTED]

Re: ANNOUNCE: GHC version 6.10.1

2008-11-12 Thread Simon Marlow
Magicloud wrote: Hi, It is a few days after the release. But why the darcs repos of 6.10 is still changing? The 6.10 repo is a branch. We tagged the 6.10.1 release, and we're now working towards a 6.10.2 release. Cheers, Simon ___

Re: ANNOUNCE: GHC version 6.10.1

2008-11-11 Thread Magicloud
Hi, It is a few days after the release. But why the darcs repos of 6.10 is still changing? Ian Lynagh wrote: == The (Interactive) Glasgow Haskell Compiler -- version 6.10.1

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-10 Thread Judah Jacobson
On Sun, Nov 9, 2008 at 11:03 AM, Don Stewart [EMAIL PROTECTED] wrote: judah.jacobson: Note that haskeline has a lot of dependencies and requires TemplateHaskell and many other language extensions. I'm also somewhat wary of switching to haskeline in ghc-6.10. I think these issues could

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-10 Thread Ian Lynagh
On Mon, Nov 10, 2008 at 10:39:42AM -0800, Judah Jacobson wrote: On Sun, Nov 9, 2008 at 11:03 AM, Don Stewart [EMAIL PROTECTED] wrote: judah.jacobson: Note that haskeline has a lot of dependencies and requires TemplateHaskell and many other language extensions. I'm also somewhat

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-09 Thread Duncan Coutts
On Sun, 2008-11-09 at 01:49 +, Ian Lynagh wrote: On Sat, Nov 08, 2008 at 12:33:57PM -0800, Judah Jacobson wrote: bind \e[3~ ed-delete-next-char It's a shame this doesn't just work out of the box in an xterm, on Debian at least. Perhaps we should consider switching to haskeline? Do

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminalincompatibility?

2008-11-09 Thread Claus Reinke
It's a shame this doesn't just work out of the box in an xterm, on Debian at least. Perhaps we should consider switching to haskeline? Do we know anything about how portable and complete that is? If a haskell-based solution could be made to work, that would be great - if you think that editline

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminalincompatibility?

2008-11-09 Thread Duncan Coutts
On Sun, 2008-11-09 at 14:59 +, Claus Reinke wrote: Talking about dependencies of cabal packages: - some packages depend on everything and the kitchen-sink, following the ah, great, here's another package I should use idea of what it means to provide a modern haskell package.

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-09 Thread Judah Jacobson
On Sun, Nov 9, 2008 at 6:42 AM, Duncan Coutts [EMAIL PROTECTED] wrote: On Sun, 2008-11-09 at 01:49 +, Ian Lynagh wrote: On Sat, Nov 08, 2008 at 12:33:57PM -0800, Judah Jacobson wrote: bind \e[3~ ed-delete-next-char It's a shame this doesn't just work out of the box in an xterm, on

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-09 Thread Don Stewart
judah.jacobson: On Sun, Nov 9, 2008 at 6:42 AM, Duncan Coutts [EMAIL PROTECTED] wrote: On Sun, 2008-11-09 at 01:49 +, Ian Lynagh wrote: On Sat, Nov 08, 2008 at 12:33:57PM -0800, Judah Jacobson wrote: bind \e[3~ ed-delete-next-char It's a shame this doesn't just work out of the

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Ian Lynagh
Hi Philip, On Fri, Nov 07, 2008 at 12:13:04PM +0100, Philip K.F. Hölzenspies wrote: After the announcement, I downloaded and installed the final release of 6.10.1. At some prior stage, I used the RC1 release, which had the same bug, but I had generally assumed it to be an RC-phenomenon.

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Judah Jacobson
On Fri, Nov 7, 2008 at 8:38 PM, Alexander Dunlap [EMAIL PROTECTED] wrote: On Fri, Nov 7, 2008 at 3:13 AM, Philip K.F. Hölzenspies [EMAIL PROTECTED] wrote: Hi all, I apologize if this is off-topic, but I'm having a similar (but distinct) problem: editline thinks that my delete key is a tilde

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Alexander Dunlap
On Sat, Nov 8, 2008 at 12:33 PM, Judah Jacobson [EMAIL PROTECTED] wrote: On Fri, Nov 7, 2008 at 8:38 PM, Alexander Dunlap [EMAIL PROTECTED] wrote: On Fri, Nov 7, 2008 at 3:13 AM, Philip K.F. Hölzenspies [EMAIL PROTECTED] wrote: Hi all, I apologize if this is off-topic, but I'm having a

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Ian Lynagh
On Sat, Nov 08, 2008 at 12:33:57PM -0800, Judah Jacobson wrote: bind \e[3~ ed-delete-next-char It's a shame this doesn't just work out of the box in an xterm, on Debian at least. Perhaps we should consider switching to haskeline? Do we know anything about how portable and complete that is?

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Ian Lynagh
On Sun, Nov 09, 2008 at 01:49:43AM +, Ian Lynagh wrote: On Sat, Nov 08, 2008 at 12:33:57PM -0800, Judah Jacobson wrote: bind \e[3~ ed-delete-next-char It's a shame this doesn't just work out of the box in an xterm, on Oh, the other thing I meant to say is that it seems to behaves

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Reiner Pope
On Sun, Nov 9, 2008 at 12:53 PM, Ian Lynagh [EMAIL PROTECTED] wrote: On Sun, Nov 09, 2008 at 01:49:43AM +, Ian Lynagh wrote: On Sat, Nov 08, 2008 at 12:33:57PM -0800, Judah Jacobson wrote: bind \e[3~ ed-delete-next-char It's a shame this doesn't just work out of the box in an xterm, on

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Brandon S. Allbery KF8NH
On 2008 Nov 8, at 22:13, Rohan Drape wrote: Emacs sends text to processes in packets of at most 255 characters. In between these ghci now gets a ^D character sequence inserted into the text. This did not happen previously (ie. with 6.8.2). This sounds like a bug: either editline or ghci

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-08 Thread Rohan Drape
On 2008-11-09, Reiner Pope [EMAIL PROTECTED] wrote: I'm not sure if this is Emacs' fault, but when I run GHCi through Emacs, entered text is printed to stdout or stderr immediately after Enter is pressed; when this is done after a file is loaded, ^J is appended. Also here, and there is a

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-07 Thread Judah Jacobson
On Fri, Nov 7, 2008 at 3:13 AM, Philip K.F. Hölzenspies [EMAIL PROTECTED] wrote: Dear Ian, all, After the announcement, I downloaded and installed the final release of 6.10.1. At some prior stage, I used the RC1 release, which had the same bug, but I had generally assumed it to be an

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-07 Thread Judah Jacobson
On Fri, Nov 7, 2008 at 4:36 AM, Duncan Coutts [EMAIL PROTECTED] wrote: I get some working and some non-working. Eg backspace, del, home, end work, but the ctl-left/ctl-right to jump words does not. Does anyone know how libedit is supposed to be configured? readline uses /etc/inputrc but

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-07 Thread Duncan Coutts
On Fri, 2008-11-07 at 12:13 +0100, Philip K.F. Hölzenspies wrote: It seems editline has some incompatibility with my terminal. Maybe, I should configure something differently, but any and all of the control characters I type and work for all readline based (and all custom line-readers I have

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-07 Thread Philip K.F. Hölzenspies
Dear Ian, all, After the announcement, I downloaded and installed the final release of 6.10.1. At some prior stage, I used the RC1 release, which had the same bug, but I had generally assumed it to be an RC-phenomenon. Which bug? Well... It seems editline has some incompatibility with my

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-07 Thread Duncan Coutts
On Fri, 2008-11-07 at 13:02 -0800, Don Stewart wrote: Does anyone know how libedit is supposed to be configured? readline uses /etc/inputrc but libedit either does not or doesn't understand all of it. /me wonders if it was really necessary to switch from readline I'll note that it

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-07 Thread Don Stewart
duncan.coutts: On Fri, 2008-11-07 at 13:02 -0800, Don Stewart wrote: Does anyone know how libedit is supposed to be configured? readline uses /etc/inputrc but libedit either does not or doesn't understand all of it. /me wonders if it was really necessary to switch from readline

Re: ANNOUNCE: GHC version 6.10.1 - EditLine / terminal incompatibility?

2008-11-07 Thread Alexander Dunlap
On Fri, Nov 7, 2008 at 3:13 AM, Philip K.F. Hölzenspies [EMAIL PROTECTED] wrote: Dear Ian, all, After the announcement, I downloaded and installed the final release of 6.10.1. At some prior stage, I used the RC1 release, which had the same bug, but I had generally assumed it to be an

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-05 Thread Ian Lynagh
On Tue, Nov 04, 2008 at 09:02:12PM -0500, Brandon S. Allbery KF8NH wrote: On 2008 Nov 4, at 20:26, Jason Dagit wrote: On Tue, Nov 4, 2008 at 4:26 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Are you sure it does deinstall the 6.8 compiler? After installing 6.10, there should be a

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-05 Thread Manuel M T Chakravarty
Ian Lynagh: On Tue, Nov 04, 2008 at 09:02:12PM -0500, Brandon S. Allbery KF8NH wrote: On 2008 Nov 4, at 20:26, Jason Dagit wrote: On Tue, Nov 4, 2008 at 4:26 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Are you sure it does deinstall the 6.8 compiler? After installing 6.10, there

ANNOUNCE: GHC version 6.10.1

2008-11-04 Thread Ian Lynagh
== The (Interactive) Glasgow Haskell Compiler -- version 6.10.1 == The GHC Team is pleased to announce a new major release of GHC. There have been a number of

Re: ANNOUNCE: GHC version 6.10.1

2008-11-04 Thread Lennart Kolmodin
Hello fellow GHC users, Ian Lynagh wrote: == The (Interactive) Glasgow Haskell Compiler -- version 6.10.1 == [snip] How to get it ~ The easy way

Re: ANNOUNCE: GHC version 6.10.1

2008-11-04 Thread Jason Dagit
On Tue, Nov 4, 2008 at 10:11 AM, Ian Lynagh [EMAIL PROTECTED] wrote: How to get it ~ The easy way is to go to the web page, which should be self-explanatory: http://www.haskell.org/ghc/ We supply binary builds in the native package format for many platforms, and the

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-04 Thread Manuel M T Chakravarty
Jason Dagit: On Tue, Nov 4, 2008 at 10:11 AM, Ian Lynagh [EMAIL PROTECTED] wrote: How to get it ~ The easy way is to go to the web page, which should be self- explanatory: http://www.haskell.org/ghc/ We supply binary builds in the native package format for many

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-04 Thread Jason Dagit
On Tue, Nov 4, 2008 at 4:26 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Jason Dagit: On Tue, Nov 4, 2008 at 10:11 AM, Ian Lynagh [EMAIL PROTECTED] wrote: How to get it ~ The easy way is to go to the web page, which should be self-explanatory:

Re: ANNOUNCE: GHC version 6.10.1 - MacOS installer

2008-11-04 Thread Brandon S. Allbery KF8NH
On 2008 Nov 4, at 20:26, Jason Dagit wrote: On Tue, Nov 4, 2008 at 4:26 PM, Manuel M T Chakravarty [EMAIL PROTECTED] wrote: Jason Dagit: I'm on OSX and I currently have ghc-6.6.1 and ghc-6.8.3 (installed from a pkg). I would like to add ghc-6.10.1 to my system. I tried to do this with RC1