mighty-gerbils / gerbil

Gerbil Scheme
https://cons.io
GNU Lesser General Public License v2.1
1.15k stars 110 forks source link

Bad quasiquote #57

Open fare opened 6 years ago

fare commented 6 years ago
``(a ,@,@'((c d e f)))

Should return

`(a ,@(c d e f))

as it does with e.g. SBCL. But Gerbil currently returns

`(a ,@((c d e f)))

See notably the extensive test suite part of fare-quasiquote: https://gitlab.common-lisp.net/frideau/fare-quasiquote

stepnem commented 5 years ago

This is all the more interesting given that Gambit itself does return the correct form.