racket icon indicating copy to clipboard operation
racket copied to clipboard

The Racket repository

Results 382 racket issues
Sort by recently updated
recently updated
newest added

For quite some time, I have been having issues keeping all my boards up. The days here are getting hotter every year and this year I lost a few boards....

Here are the current results for checking release regressions: ### Build Failures ##### Package no longer exists These all are, or depend on, packages whose source doesn't exist. - [x]...

**Is your feature request related to a problem? Please describe.** Downloading the source and compiling minimal-racket. libintl.9.dylib not found. libintl.9.dylib doesn't exist it is libintl.8.dylib it was renamed and released...

platform:macos

I've gotten a new Chez Scheme test failure while updating my Guix patch series to build fb526d1d31f5c26a606b62e2074566c7f5a13e54 from the `release` branch. The full build log is at [z5b0b77px8iscdmnma5q0zgvx5gfli-chez-scheme-for-racket-9.5.9.2.drv.gz](https://github.com/racket/racket/files/9117071/z5b0b77px8iscdmnma5q0zgvx5gfli-chez-scheme-for-racket-9.5.9.2.drv.gz); here's the...

Currently, the "base" package depends on the ["racket-win32-x86_64"](https://github.com/racket/libs/tree/master/racket-win32-x86_64-3) package, which includes libiconv. libiconv is under the LGPL v2.1, and is the only LGPL dependency of minimal Racket (the others are...

platform:windows

Weak vectors are useful for maintaining pools of objects who's finalisers interact with other live objects in the pool. For example, compacting or reordering slots which become free due to...

feature request

The example of `send+` is: ``` (define point% (class object% (super-new) (init-field [x 0] [y 0]) (define/public (move-x dx) (new this% [x (+ x dx)])) (define/public (move-y dy) (new this%...

documentation

``` > ((lambda (x . xs) x)) ; #: arity mismatch; ; the expected number of arguments does not match the given number ; expected: at least 1 ; given:...

bug

In [Rebellion](https://github.com/jackfirth/rebellion), I occasionally need to write code like this: ```racket (if (equal? (procedure-arity f) 2) f (procedure-reduce-arity f 2)) ``` This is usually because: 1. I'm stuffing the function...

api design
confusing behavior

The first commit just tweaks the help output from Zuo's `configure.ac`. The second uses `AX_PROG_CC_FOR_BUILD` from the Autoconf archive to infer those values, so you can do `./configure --host=powerpc64le-linux-gnu` rather...