Function: erc-noncommands-mode
erc-noncommands-mode is an autoloaded, interactive and byte-compiled
function defined in erc-goodies.el.gz.
Signature
(erc-noncommands-mode &optional ARG)
Documentation
Toggle ERC noncommands mode.
If called interactively, enable erc-noncommands-mode(var)/erc-noncommands-mode(fun) if ARG is
positive, and disable it otherwise. If called from Lisp, enable
the mode if ARG is omitted or nil.
Treat commands that display themselves specially.
This module has been a no-op since ERC 5.3 and has likely only
ever made sense in the context of erc-command-indicator(var)/erc-command-indicator(fun). It
was deprecated in ERC 5.6.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
;;;###autoload(autoload 'erc-noncommands-mode "erc-goodies" nil t)
(define-erc-module noncommands nil
"Treat commands that display themselves specially.
This module has been a no-op since ERC 5.3 and has likely only
ever made sense in the context of `erc-command-indicator'. It
was deprecated in ERC 5.6."
((add-hook 'erc--input-review-functions #'erc-send-distinguish-noncommands))
((remove-hook 'erc--input-review-functions
#'erc-send-distinguish-noncommands)))