cmp: fix let bindings with initforms which are lists with QUOTE symbol as first element
Example: (let ((x '(quote ...))) ...) We really have to quote the value in all cases, si::maybe-quote would strip away one level of quotation leaving only the equivalent of (let ((x (quote ...))) ...) which of course is incorrect.
Please register or sign in to comment