[racket-users] Scribble equivalent of rowspan

2016-11-29 Thread Philip McGrath
A very rookie question: I am trying to figure out how to specify the equivalent of HTML's rowspan attribute for tabular from scribble/base: that is, to have a cell which spans more than one row. In LaTeX, I think I would use "multirow" (but I'm no LaTeX expert). I know so know about 'cont, but I

Re: [racket-users] implementing make in racket

2016-11-29 Thread David Storrs
On Tue, Nov 29, 2016 at 4:22 PM, Dan Liebgold wrote: > On Tuesday, November 29, 2016 at 3:32:48 PM UTC-8, Jay McCarthy wrote: > > Wow, that's a lame error that has been there for a LONG time. I just > > pushed a fix. > > > > Got it. > > Any advice for how to handle

Re: [racket-users] implementing make in racket

2016-11-29 Thread Dan Liebgold
On Tuesday, November 29, 2016 at 3:32:48 PM UTC-8, Jay McCarthy wrote: > Wow, that's a lame error that has been there for a LONG time. I just > pushed a fix. > Got it. Any advice for how to handle when a job thunk raises an exception? Currently (stop-job-queue! jq) waits forever... -- You

Re: [racket-users] implementing make in racket

2016-11-29 Thread Jay McCarthy
Wow, that's a lame error that has been there for a LONG time. I just pushed a fix. On Tue, Nov 29, 2016 at 6:15 PM, Dan Liebgold wrote: > On Tuesday, November 29, 2016 at 12:23:32 PM UTC-8, Jay McCarthy wrote: >> DrDr uses job-queue for a similar process >> >>

Re: [racket-users] implementing make in racket

2016-11-29 Thread Dan Liebgold
On Tuesday, November 29, 2016 at 12:23:32 PM UTC-8, Jay McCarthy wrote: > DrDr uses job-queue for a similar process > > http://docs.racket-lang.org/job-queue/index.html > Looks promising. However, the docs say that stop-job-queue! will block until jobs are done... and this code doesn't wait:

[racket-users] small cosmetic comment

2016-11-29 Thread JCG
On the mailing lists section of the Racket site, there are users, announcements and dev groups. Underneath each are three IMG tags referencing bad urls, e.g. http://gmane.org/plot-rate.php?group=gmane.comp.lang.racket.user I just thought to mention it after seeing dead-link pictures for quite

RE: [racket-users] hyperlink in code:comment

2016-11-29 Thread Jos Koot
Thanks, I'll try that. It is not clear to me where I can use @#, But certainly your response will be a great help for me. Thanks again, Jos -Original Message- From: stchang...@gmail.com [mailto:stchang...@gmail.com] On Behalf Of Stephen Chang Sent: martes, 29 de noviembre de 2016 21:31

Re: [racket-users] implementing make in racket

2016-11-29 Thread Sam Tobin-Hochstadt
Typed Racket uses this code: https://github.com/racket/typed-racket/blob/master/typed-racket-test/send-places.rkt to manage a job queue for testing. Sam On Tue, Nov 29, 2016 at 3:23 PM, Jay McCarthy wrote: > DrDr uses job-queue for a similar process > >

Re: [racket-users] hyperlink in code:comment

2016-11-29 Thread Stephen Chang
You can use the escape identifier: #lang scribble/manual @(require scribble/eval (for-label racket)) @interaction[ (define a (list 1)) (define b (list 1)) (code:comment @#,para{a and b are not @racket[eq?], but they are @racket[equal?]:}) (eq? a b) (equal? a b)] On Tue, Nov 29,

Re: [racket-users] implementing make in racket

2016-11-29 Thread Jay McCarthy
DrDr uses job-queue for a similar process http://docs.racket-lang.org/job-queue/index.html Jay On Tue, Nov 29, 2016 at 2:22 PM, Dan Liebgold wrote: > I find myself implementing make (or something similar) in Racket... can > anyone point to a good example of the

Re: [racket-users] Re: Adding new exceptions

2016-11-29 Thread Matthew Flatt
In the case of `rename-file-or-directory`, it looks like `exn:fail:filesystem:exists` is not raised as intended on non-Windows platforms (broken as of v6.5). I'll fix that. Otherwise, I agree that using the `errno` field is the way to go when you have an `exn:fail:filesystem:errno` exception. The

Re: [racket-users] Re: Adding new exceptions

2016-11-29 Thread WarGrey Gyoudmon Ju
Hi, David. The exn:fail:filesystem and exn:fail:network do provide the errno code, If you are only working in one OS, you can also rely on the errno code. If you are working on multiple OSes, it might be a problem since Racket have not yet provided an abstract layer on the errno code. If you