Function: cider-log--lisp-variable--anon-cmacro
cider-log--lisp-variable--anon-cmacro is a function defined in
cider-log.el.
Signature
(cider-log--lisp-variable--anon-cmacro WHOLE &rest SLOTS)
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
;; Closure converted to defun by helpful.
(defun cider-log--lisp-variable--anon-cmacro
(whole &rest slots)
(ignore slots)
(if
(not
(stringp
(car slots)))
whole
(macroexp-warn-and-return
(format "Obsolete name arg %S to constructor %S"
(car slots)
(car whole))
`(,(car whole)
(identity ,(car slots))
,@(cdr slots))
nil nil
(car slots))))