Function: chart-axis-names--anon-cmacro
chart-axis-names--anon-cmacro is a function defined in chart.el.gz.
Signature
(chart-axis-names--anon-cmacro WHOLE &rest SLOTS)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/chart.el.gz
;; Closure converted to defun by helpful.
(defun chart-axis-names--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))))