Function: erc-send-line

erc-send-line is a byte-compiled function defined in erc-backend.el.gz.

Signature

(erc-send-line TEXT DISPLAY-FN)

Documentation

Send TEXT to the current server. Wrapping and flood control apply.

Use DISPLAY-FN to show the results.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-backend.el.gz
;; proposed name, not used by anything yet
(defun erc-send-line (text display-fn)
  "Send TEXT to the current server.  Wrapping and flood control apply.
Use DISPLAY-FN to show the results."
  (mapc (lambda (line)
          (erc-server-send line)
          (funcall display-fn))
        (erc-split-line text)))