Variable: erc--features-to-modules

erc--features-to-modules is a variable defined in erc-common.el.gz.

Value

((erc-pcomplete completion pcomplete)
 (erc-capab capab-identify)
 (erc-join autojoin)
 (erc-page page ctcp-page)
 (erc-sound sound ctcp-sound)
 (erc-stamp stamp timestamp)
 (erc-services services nickserv))

Documentation

Migration alist mapping a library feature to module names.

Keys need not be unique: a library may define more than one module. Sometimes a module's downcased alias will be its canonical name.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
;; TODO move goodies modules here after 29 is released.
(defconst erc--features-to-modules
  '((erc-pcomplete completion pcomplete)
    (erc-capab capab-identify)
    (erc-join autojoin)
    (erc-page page ctcp-page)
    (erc-sound sound ctcp-sound)
    (erc-stamp stamp timestamp)
    (erc-services services nickserv))
  "Migration alist mapping a library feature to module names.
Keys need not be unique: a library may define more than one
module.  Sometimes a module's downcased alias will be its
canonical name.")