As discussed here i get compilation failures when upon (ql:load "cl-bson), which requires let-over-lambda. The failure occurs here:
(defun pandoriclet-get (letargs)
`(case sym
,@(mapcar #`((,(car a1)) ,(car a1))
letargs)
(t (error
"Unknown pandoric get: ~a"
sym))))
The # isn't #', and then there are commas are inside of a backquote. Which suggests something failed to setup a reader macro for #.
As discussed here i get compilation failures when upon (ql:load "cl-bson), which requires let-over-lambda. The failure occurs here:
The #
isn't #', and then there are commas are inside of a backquote. Which suggests something failed to setup a reader macro for #.