Function: erc--inhibit-slash-cmd-insertion
erc--inhibit-slash-cmd-insertion is a byte-compiled function defined
in erc.el.gz.
Signature
(erc--inhibit-slash-cmd-insertion STATE)
Documentation
Don't insert STATE object's message if it's a "slash" command.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--inhibit-slash-cmd-insertion (state)
"Don't insert STATE object's message if it's a \"slash\" command."
(when (erc--input-split-cmdp state)
(setf (erc--input-split-insertp state) nil)))