Re: [racket-users] racket -m from commandline

2022-12-17 Thread Wolfgang Hukriede
Great, thanks David, that did the trick. And someone might want to fix the "racket --help" output, if you ask me. Happy holidays! On 12/17/22, David Van Horn wrote: > You likely want to also use the -t option so that the module is required. > Here's an example: > > % cat try.rkt > > #lang racket

[racket-users] Re: Question about style

2018-08-11 Thread Wolfgang Hukriede
My advice would be to follow your own taste. But drop the brackets. On Saturday, August 11, 2018 at 4:11:19 PM UTC+2, Robert Heffernan wrote: > > Dear all, > > I am new to Racket and only slightly less new to scheme & scheme-like > languages. > > I have noticed myself often doing something like

[racket-users] Re: how to show raco full (non-abbreviated) error messages

2018-08-10 Thread Wolfgang Hukriede
ed: 2 given: 1 errortrace...: context...: util:table-with-decimals/new util:table-with-decimals table-as-html-with-decimals build-and-save-popdyn-display On Friday, August 10, 2018 at 8:58:21 PM UTC+2, Wolfgang Hukriede wrote: > > hi, > > subject says it all. I think i

[racket-users] how to show raco full (non-abbreviated) error messages

2018-08-10 Thread Wolfgang Hukriede
hi, subject says it all. I think it's a nuisance to cripple error messages instead of just showing them. What's more, quite often emacs cannot find the location then. thanks, see you -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubsc

Re: [racket] error writing to stream port (Broken pipe; errno=32)

2014-09-12 Thread Wolfgang Hukriede
Hi Matthias, nice to meet you! Yes, this was what I was looking for. For the records: (define (epipe? x) (and (exn:fail:filesystem:errno? x) (equal? '(32 . posix) (exn:fail:filesystem:errno-errno x (define (epipe-handler x) "ignore") (with-handlers ((epipe? epipe-handler)) tran

Re: [racket] error writing to stream port (Broken pipe; errno=32)

2014-09-11 Thread Wolfgang Hukriede
Do I need to install a signal handler catching SIGPIPE? (Or replace the existing signal-handler?) Thanks! Racket Users list: http://lists.racket-lang.org/users

Re: [racket] error writing to stream port (Broken pipe; errno=32)

2014-09-11 Thread Wolfgang Hukriede
To expand a bit: the handling of the broken pipe seems okay to me, I just don't want to see the error message. Thanks! Racket Users list: http://lists.racket-lang.org/users

[racket] error writing to stream port (Broken pipe; errno=32)

2014-09-11 Thread Wolfgang Hukriede
How am I supposed to catch: error writing to stream port (Broken pipe; errno=32) ? Thanks, Wolfgang Racket Users list: http://lists.racket-lang.org/users