Kasper Gałkowski

Results 19 issues of Kasper Gałkowski

ABCL: ``` CL-USER(1): (defstruct foo "it's a foo") FOO CL-USER(2): (documentation 'foo 'type) "it's a foo" ``` JSCL: ``` CL-USER> (defstruct foo "it's a foo") ERROR: "it's a foo" is...

enhancement

Sequence functions (map, concatenate) should also work on these specifiers: - simple-string - simple-base-string - base-string - simple-vector - bit-vector Are there others? I can't find the related resource in...

here's an example session: ``` * (load "~/quicklisp/setup.lisp") T * (ql:quickload :clml) debugger invoked on a QUICKLISP-CLIENT:SYSTEM-NOT-FOUND in thread #: System "clml.data.r-datasets-package" not found ``` In https://beta.quicklisp.org/dist/quicklisp/2021-08-07/systems.txt: ``` clml clml.data.r-datasets...

#### Example: Doesn't work: ``` $ abcl CL-USER(1): (jnew-runtime-class "org.example.Foo") #: Debugger invoked on condition of type JAVA-EXCEPTION Java exception: #. ``` Can be worked around by first calling something...

JDK 17 Removed some obsolete class file format in regards to runtime visible annotations. Now, the annotation parser *requires* a class type signature, i.e. has *stopped* accepting a class, in...

*ABCL 1.8.0* JDK8: ``` CL-USER(6): (jcall "getAnnotations" (jnew-runtime-class "Foo" :annotations '("java.lang.Deprecated"))) #(#) ``` JDK11: ``` CL-USER(6): (jcall "getAnnotations" (jnew-runtime-class "Foo" :annotations '("java.lang.Deprecated"))) #(#) ``` JDK17: ``` CL-USER(3): (jcall "getAnnotations" (jnew-runtime-class...

Maybe I don't know how to use it, but this fails for me: ```lisp (let ((config ("bootstrap.servers" "localhost:1234" "group.id" "test-lisp-consumer" "enable.auto.commit" "false")) (consumer (make-instance 'kf:consumer :conf config :serde #'babel:octets-to-string))) (kf:assign...

I am getting this error when this value is in config.yaml: ``` failed to list awsls supported resources error=operation error Cost and Usage Report Service: DescribeReportDefinitions, exceeded maximum number of...

I'm using emacs 29.0.50 tip-of-trunk. When using SLY with the vanilla Emacs completion (i.e. with sly-symbol-completion-mode disabled), the suggestions are kind of merged with their metadata. See screenshot: ![image](https://user-images.githubusercontent.com/15697697/202011499-4e854040-eafb-420b-b9db-e415b0142915.png) I...

`md5` depends on flexi streams on some implementations. Currently that dependency is missing from `systems.txt`, which means the package can't be built on ECL and ABCL.