Function: erc-send-message
erc-send-message is a byte-compiled function defined in erc.el.gz.
Signature
(erc-send-message LINE &optional FORCE)
Documentation
Send LINE to the current channel or user and display it.
See also erc-message and erc-display-line.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-send-message (line &optional force)
"Send LINE to the current channel or user and display it.
See also `erc-message' and `erc-display-line'."
(if (erc--input-split-p erc--current-line-input-split)
(funcall erc--send-message-nested-function line force)
(erc--send-message-external line force)))