(cl-defmacro test (x &rest y &key z)
`(list ,x ,y ,@z))
(test «+» "-" «*»)
Ожидаю получить: + nil - *
Но получаю ошибку: cond: Keyword argument - not one of (:y)
Как поправить?
(cl-defmacro test (x &rest y &key z)
`(list ,x ,y ,@z))
(test «+» "-" «*»)
Ожидаю получить: + nil - *
Но получаю ошибку: cond: Keyword argument - not one of (:y)
Как поправить?