Raymond Toy pushed to branch rtoy-print-using-ryu at cmucl / cmucl Commits: 059bf9a8 by Raymond Toy at 2026-05-29T16:46:57-07:00 Fix typos in def-format-ryu Forgot a comma and `(values)` was in the wrong place. - - - - - 1 changed file: - src/code/format.lisp Changes: ===================================== src/code/format.lisp ===================================== @@ -1583,10 +1583,10 @@ ((and (floatp ,number) (or (float-infinity-p ,number) (float-nan-p ,number))) - (prin1 number ,stream)) + (prin1 ,number ,stream)) (t - ,@forms) - (values))))) + ,@forms)) + (values)))) (defmacro def-format-aux (base-name (stream number &rest args) &body body) (let ((docstring View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/059bf9a81579243ffb7a5be9... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/059bf9a81579243ffb7a5be9... You're receiving this email because of your account on gitlab.common-lisp.net. Manage all notifications: https://gitlab.common-lisp.net/-/profile/notifications | Help: https://gitlab.common-lisp.net/help