[Git][cmucl/cmucl][issue-497-describe-macro-with-arglist] Add test that macro documentation still works
Raymond Toy pushed to branch issue-497-describe-macro-with-arglist at cmucl / cmucl Commits: f561aa57 by Raymond Toy at 2026-05-01T11:21:29-07:00 Add test that macro documentation still works Just a sanity check because we inserted the lambda-list arg before the doc arg in %%defmacro. - - - - - 1 changed file: - tests/defmacro.lisp Changes: ===================================== tests/defmacro.lisp ===================================== @@ -43,6 +43,11 @@ (assert-equal '(name &body body) (c::info :function :macro-arglist 'issue.497.body))) +(define-test issue.497.documentation + (:tag :issues) + (assert-equal "Build a list from two args" + (documentation 'issue.497.with-doc 'function))) + (define-test issue.497.macro-expands (:tag :issues) ;; Storing the lambda-list must not have broken the macro-function View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f561aa578961ce7190c85f37... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f561aa578961ce7190c85f37... 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
participants (1)
-
Raymond Toy (@rtoy)