vlad

Results 24 issues of vlad

https://github.com/jscl-project/jscl/blob/98376589572908d26c33ad536228abd6672a1dfd/src/boot.lisp#L158 ```lisp CL-USER> (fboundp '(what the f..k ?)) T CL-USER> ```

bug

https://github.com/jscl-project/jscl/blob/98376589572908d26c33ad536228abd6672a1dfd/src/conditions.lisp#L123 ```lisp CL-USER> (warn "a ~a b ~a" 1 2) WARNING: a (1 2) b NIL NIL CL-USER> ```

bug

https://github.com/jscl-project/jscl/blob/dd613aa7a2f09591bccbfc3f4c727c98a867cae2/src/hash-table.lisp#L39 The current release of the hash table does not work correctly with numeric keys. ```lisp CL-USER> (gethash 1 qq ) ERROR: activechars.join is not a function ```

enhancement

`If function-name is a [list](http://clhs.lisp.se/Body/26_glo_l.htm#list) it must be of the form (setf symbol). If (fboundp function-name) is [false](http://clhs.lisp.se/Body/26_glo_f.htm#false), a new [generic function](http://clhs.lisp.se/Body/26_glo_g.htm#generic_function) is created. If (fdefinition function-name) is a [generic...

enhancement

https://sourceforge.net/projects/lisa/ **Lisa is a production rule system for Common Lisp, whose purpose is to provide a foundation for the development of "intelligent" applications. Lisa employs a modern CLOS implementation of...

discussion

```lisp CL-USER> (typep 'symbol 'standard-object) ERROR: The object `SYMBOL' is not of type `"STD-INSTANCE"' CL-USER> ``` must be ```lisp CL-USER> (typep 'symbol 'standard-object) nil ``` https://github.com/jscl-project/jscl/blob/aaa2365ea55254eb25fc07c5209b89f9fb1c478a/src/types.lisp#L218

bug

Add `built-in-class` cache.

enhancement

```lisp (setq q (string 22)) (#j:console:log (list q)) => internals.Cons {car: Array(1), cdr: i…s.Symbol} car: Array(1) 0: 22 dimensions: internals.Cons {car: 1, cdr: i…s.Symbol} fillpointer: false stringp: 1 ``` ```lisp...

bug

### SBCL ```lisp CL-USER> (reduce #'+ (list 'aaa 'b 'ccc) :key (lambda (x) (length (string x)))) 7 ``` ### JSCL ```lisp CL-USER> (reduce #'+ (list 'aaa 'b 'ccc) :key (lambda...

bug

Hmm ```lisp Welcome to JSCL (version aaa2365 built on 9 May 2021) JSCL is a Common Lisp implementation on Javascript. For more information, visit the project page at GitHub. CL-USER>...