Sam Phillips

Results 41 comments of Sam Phillips

~~I'll see about building 8.5 CS this morning and get back to you.~~ I just checked two RPi Ubuntu systems (22.04 and 21.04) that I had built 8.4 CS from...

I also have this problem using XFCE4 with two monitors.

Some related thoughts I've had on exceptions. I find that a majority of Racket exceptions just being a struct type with a message and the current marks is a bit...

It does work if `xvfb` is installed so running `xvfb-run racket --lib racket-langserver` is a workaround for now.

FWIW, `in-producer` works correctly so this may be a problem with generators ``` (define x (in-producer (let ([x 0]) (lambda () (set! x (add1 x)) x)))) (define/contract y (sequence/c integer?)...

> I'm not sure sure about this one. I see how it lets dotted calls turn into method calls with less in between, but there are some small issues, at...

This repo is for the package index, and I think the functionality you want needs to be in the [pkg library](https://github.com/racket/racket/tree/master/racket/collects/pkg) which is in the racket repo.

Seems you are very much aware of this state of affairs...

Looking at this in more detail it seems that the additional documentation is from a package with a dependency that is somehow pulling in all of the main documentation.

I think the problem is that the package directory cannot be inside of a collection like this. I'll check when i get home. On Tue, Apr 19, 2022, 15:52 Siddhartha...