Function: use-package-normalize-recursive-symbols
use-package-normalize-recursive-symbols is a byte-compiled function
defined in use-package-core.el.gz.
Signature
(use-package-normalize-recursive-symbols LABEL ARG)
Documentation
Normalize a list of symbols.
Source Code
;; Defined in /usr/src/emacs/lisp/use-package/use-package-core.el.gz
(defun use-package-normalize-recursive-symbols (label arg)
"Normalize a list of symbols."
(cond
((use-package-non-nil-symbolp arg)
arg)
((and (listp arg) (listp (cdr arg)))
(mapcar #'(lambda (x) (use-package-normalize-recursive-symbols label x))
arg))
(t
(use-package-error
(concat label " wants a symbol, or nested list of symbols")))))