Closed pbing closed 5 years ago
Indeed. Thanks! Fixed!
On Thu, Nov 15, 2018 at 9:31 AM pbing notifications@github.com wrote:
Source "./Code/Arithmetic/compiler-macros.lisp"
CL-USER> (*) 1
(define-compiler-macro * (&rest args) (cond ((null args) 0)
should be
(define-compiler-macro * (&rest args) (cond ((null args) 1)
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/robert-strandh/SICL/issues/121, or mute the thread https://github.com/notifications/unsubscribe-auth/ABYcQQsjxU_WMk8yRyE7YLOUoxfUGaxZks5uvSZEgaJpZM4YfTy3 .
-- Robert Strandh
Fixed by 8e2d9b9c3a27c5af7351e1e18f8010d4d51faaaf
Source "./Code/Arithmetic/compiler-macros.lisp"
should be