buffered output; :s -p"%s%s%s"

1997-05-06 Thread Christian Sievers
Hello, I noticed two things which I think might be called bugs, at least I am near doing so: The first thing really annoys me: If you input something like [0,x] where x=x you get no output at all before you interupt. I think the output is buffered, and I don't like it. This is worse in less

Installation problems

1997-05-06 Thread Arne John Glenstrup
To The Haskell-Hackers, I am trying to install ghc version 2.02 on sun4c architechture. 1 In file fptools/literate/mkdependlit I find the following lines at the top: $LIB_ARCH_DIR="/amd/church/projects/pacsoft/D/ghc-builds/1.3/opt-sparc-sun-sunos4/literate"; $LIB_DIR="/amd/church/proj

Re: GHC 2.03 info files

1997-05-06 Thread Sven Panne
First of all a big "Thank you" for all the quick replies! Simon L Peyton Jones wrote: > [...] > http://www.dcs.gla.ac.uk/fp/software/ghc > > For some wierd reason I can't contact Glasgow's web server at the moment. I can't either, but I keep on trying. :-[ BTW, Sigbjorn's ftp-URL doesn

incomplete pattern warnings

1997-05-06 Thread Chris Okasaki
Minor problem with the check for incomplete patterns: Under ghc-2.02, the following program gives a warning about "Possibly incomplete patterns in the definition of function `f'" even though the patterns clearly are complete. module Test (f) where f (x:_) _ = x f _ (x:_) = x f [] [] =