Function: erc--make-input-split
erc--make-input-split is a byte-compiled function defined in
erc.el.gz.
Signature
(erc--make-input-split STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--make-input-split (string)
(make-erc--input-split
:string string
:insertp erc-insert-this
:sendp erc-send-this
:lines (split-string string erc--input-line-delim-regexp)
:cmdp (string-match erc-command-regexp string)))