Variable: erc--module-toggle-prefix-arg

erc--module-toggle-prefix-arg is a variable defined in erc-common.el.gz.

Value

nil

Documentation

The interpreted prefix arg of the minor-mode toggle.

Non-nil inside an ERC module's activation (or deactivation) command, such as erc-spelling-enable, when it's been called indirectly via the module's minor-mode toggle, i.e., erc-spelling-mode(var)/erc-spelling-mode(fun). nil otherwise. Its value is either the symbol toggle or an integer produced by prefix-numeric-value. See Info node (elisp) Defining Minor Modes for more.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
(defvar erc--module-toggle-prefix-arg nil
  "The interpreted prefix arg of the minor-mode toggle.
Non-nil inside an ERC module's activation (or deactivation)
command, such as `erc-spelling-enable', when it's been called
indirectly via the module's minor-mode toggle, i.e.,
`erc-spelling-mode'.  nil otherwise.  Its value is either the
symbol `toggle' or an integer produced by `prefix-numeric-value'.
See Info node `(elisp) Defining Minor Modes' for more.")