Variable: erc-inhibit-multiline-input
erc-inhibit-multiline-input is a customizable variable defined in
erc.el.gz.
Value
nil
Documentation
When non-nil, conditionally disallow input consisting of multiple lines.
Issue an error when the number of input lines submitted for sending meets or exceeds this value. The value t is synonymous with a value of 2 and means disallow more than 1 line of input.
This variable was added, or its default value changed, in ERC version
5.5.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-inhibit-multiline-input nil
"When non-nil, conditionally disallow input consisting of multiple lines.
Issue an error when the number of input lines submitted for
sending meets or exceeds this value. The value t is synonymous
with a value of 2 and means disallow more than 1 line of input."
:package-version '(ERC . "5.5")
:group 'erc
:type '(choice integer boolean))