Alan Ruttenberg
Alan Ruttenberg
```lisp (defstruct outside the-inside) (defstruct inside value) (defmethod print-object ((o inside) stream) (print-unreadable-object (o stream :type t :identity nil) (format stream "inside"))) (print (make-outside :the-inside (make-inside))) ;; #S(outside :THE-INSIDE #S(inside...
Right now it seems you can use only one repository. However, I just ran into a case where artifacts are not in central but [another](https://mvnrepository.com/repos/codice-releases) [repo](https://artifacts.codice.org/content/repositories/releases/). One can call add-repository,...
I probably can narrow this, but wanted to put it in because I can't do that now. To reproduce - clone [email protected]:FFmpeg/FFmpeg.git - Install c2ffi - the instructions [in this...
To reproduce: ## Not closed over ```lisp cl-user> (defun foo () (flet ((a ()) (b ())) (list #'a #'b))) > (foo) (# #) cl-user> (compile 'foo) cl-user> (foo) (# #)...
```lisp (defclass a () ((slot))) (defclass b (a)()) (slot-boundp (make-instance 'b) 'slot) -> NIL ``` That's correct. Now add an initform to slot in a ```lisp (defclass a() ((slot :initform...
```lisp (pprint '`(b ,a)) -> `(b ,a) ``` Instead of ```lisp (system::backq-list 'b a) ```
http://www.lispworks.com/documentation/HyperSpec/Body/f_no_app.htm
Not the end of the world, but this is annoying. Maybe I'm missing something... When loading quicklisp-abcl, quicklisp's setup.abcl is loaded and I always get ``` Caught RECURSIVE-OPERATE: ; Deprecated...
Engage the #1".." reader, which allows java expressions e.g. #1"System.out.printLn("foo")" Code was already there but needed a couple of lines in read-invoke that check for #1 and load javaparser. I'm...