Raymond Toy pushed to branch master at cmucl / cmucl Commits: 3f733bae by Raymond Toy at 2026-01-19T16:54:46-08:00 Fix critical typo in deftransform for / for complex floats We inadvertently left off the quote for the code that the deftransform is supposed to use. Without that the compiler produces an error when the deftransform would be applicable. This bug was introduced when the MR for #459 was landed. - - - - - 1 changed file: - src/compiler/float-tran.lisp Changes: ===================================== src/compiler/float-tran.lisp ===================================== @@ -1807,7 +1807,7 @@ (macrolet ((frob (type name) `(deftransform / ((x y) ((complex ,type) (complex ,type)) *) - (,name x y)))) + '(,name x y)))) (frob double-float kernel::cdiv-double-float) (frob single-float kernel::cdiv-single-float)) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/3f733bae60b20dadee5f4f0f... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/3f733bae60b20dadee5f4f0f... You're receiving this email because of your account on gitlab.common-lisp.net.