Results 24 issues of Gleefre

Trying to draw a huge polygon (~150 vertices randomly generated): ```lisp (defpackage #:sketch-user (:use #:cl) (:local-nicknames (#:s #:sketch))) (in-package #:sketch-user) (s:defsketch huge-polygon () (apply #'s:polygon (loop repeat 300 collect (random...

`free-resource` called during `kit.sdl2:close-window` assumes that current gl context is that of the window being closed; but this is not the case when multiple windows are present.

Hello, I'm trying to make a standalone executable of an app made with sketch. I tried to look at `qelt`, since it has binaries [here](https://vydd.itch.io/qelt) (itch.io), but I haven't been...

enhancement

MAPCAN/MAPCON functions have two edge cases which are not correctly handled in ccl. ```lisp (mapcan #'identity '(1 2 3)) ; should error, returns 3 instead (mapcon #'car '(1 2 3))...

When aborting the completion / trying to kill the `*Fuzzy Completions*` buffer, if the target buffer was deleted (which happens especially easily when editing a common-lisp source code block in...

MAPCAN/MAPCON functions have two edge cases which are not correctly handled in abcl. ```lisp (mapcan #'identity '(1 2 3)) ; should error, returns 3 instead (mapcon #'car '(1 2 3))...

```lisp ; File: ~/quicklisp/dists/quicklisp/software/trivia-20230618-git/level2/impl.lisp ; In: TRIVIAL-CLTL2:DEFINE-DECLARATION OPTIMIZER ; (DECLARE (IGNORABLE ENV)) ; Error: Misplaced declaration. ... Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER: the variable ENV is unbound. [Condition of type UNBOUND-VARIABLE] ```...

Consider the following request: ```common-lisp (aws/ec2:describe-instances :filters (list (aws/ec2:make-filter :name "filter-1" :values (list "val-1" "val-2")) (aws/ec2:make-filter :name "filter-2" :values (list "val-3")))) ``` An error occurs: ```common-lisp ;; sbcl The value...