robert-strandh / SICL

A fresh implementation of Common Lisp
Other
1.07k stars 79 forks source link

define-compiler-macro * #121

Closed pbing closed 5 years ago

pbing commented 6 years ago

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)
robert-strandh commented 6 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

Bike commented 5 years ago

Fixed by 8e2d9b9c3a27c5af7351e1e18f8010d4d51faaaf