Function: forge-database--anon-cmacro
forge-database--anon-cmacro is a function defined in forge-db.el.
Signature
(forge-database--anon-cmacro WHOLE &rest SLOTS)
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-db.el
;; Closure converted to defun by helpful.
(defun forge-database--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))))