Function: erc--normalize-module-symbol

erc--normalize-module-symbol is a byte-compiled function defined in erc-common.el.gz.

Signature

(erc--normalize-module-symbol SYMBOL)

Documentation

Return preferred SYMBOL for erc-modules.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
(defun erc--normalize-module-symbol (symbol)
  "Return preferred SYMBOL for `erc-modules'."
  (setq symbol (intern (downcase (symbol-name symbol))))
  (or (cdr (assq symbol erc--module-name-migrations)) symbol))