jscl-project / jscl

A Lisp-to-JavaScript compiler bootstrapped from Common Lisp
https://jscl-project.github.io
GNU General Public License v3.0
874 stars 108 forks source link

&allow-other-keys not working #491

Open hemml opened 6 months ago

hemml commented 6 months ago
CL-USER> (defun xxx (a &key b &allow-other-keys) (format t "~A ~A~%" a b))
XXX
CL-USER> (xxx 1)
1 NIL
NIL
CL-USER> (xxx 1 :b 2)
1 2
NIL
CL-USER> (xxx 1 :b 2 :c 3)
ERROR: Unknown keyword argument C