Re: [racket] missing error location info in racket

2010-09-01 Thread Jose A. Ortega Ruiz
On Thu, Sep 02 2010, Robby Findler wrote: > I think you probably want to use the errortrace library. That's what > DrRacket uses (and how it gets the better error messages). That's exactly what i was looking for. Thanks a lot, Robby. jao _ For l

Re: [racket] missing error location info in racket

2010-09-01 Thread Robby Findler
I think you probably want to use the errortrace library. That's what DrRacket uses (and how it gets the better error messages). Robby On Sun, Aug 29, 2010 at 6:04 PM, Jose A. Ortega Ruiz wrote: > > In Racket 5.0.1, with, say, f.rkt containing: > >   #lang racket >   (provide bar) >   (define (fo

Re: [racket] missing error location info in racket

2010-09-01 Thread Ray Racine
Yes, this is a a rough one. You know the error is out there ... somewhere ... Another one is exception traces not printing with a writer output stream is closed error. Reports correctly in DrRacket, its at the command line the problem is visible. I'll create a reproducible case later this eveni

[racket] missing error location info in racket

2010-08-29 Thread Jose A. Ortega Ruiz
In Racket 5.0.1, with, say, f.rkt containing: #lang racket (provide bar) (define (foo x) x) (define (bar) (foo)) requiring f.rkt at racket's textual REPL via `(require (file "f.rkt"))' works fine (as expected) and calling `(bar)' gives an error (again as expected); but the error mess