technoblogy / ulisp-arm

A version of the Lisp programming language for ARM-based boards.
http://www.ulisp.com/
MIT License
97 stars 30 forks source link

mapcan gives error if last item is a dotted list #42

Closed technoblogy closed 3 years ago

technoblogy commented 3 years ago

This should work:

(mapcan (lambda (x) x) '(nil (2) (3 . 4)))

Thanks to Herbert Snorrason for reporting this.