Function: use-package-hook-handler-normalize-mode-symbols

use-package-hook-handler-normalize-mode-symbols is a byte-compiled function defined in use-package-core.el.gz.

Signature

(use-package-hook-handler-normalize-mode-symbols SYMS)

Documentation

Ensure that SYMS turns into a list of modes.

Source Code

;; Defined in /usr/src/emacs/lisp/use-package/use-package-core.el.gz
(defun use-package-hook-handler-normalize-mode-symbols (syms)
  "Ensure that `SYMS' turns into a list of modes."
  (if (use-package-non-nil-symbolp syms) (list syms) syms))