Function: erc--send-action-perform-ctcp

erc--send-action-perform-ctcp is a byte-compiled function defined in erc.el.gz.

Signature

(erc--send-action-perform-ctcp TARGET STRING FORCE)

Documentation

Send STRING to TARGET, possibly immediately, with FORCE.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; Sending and displaying are provided separately to afford modules
;; more flexibility, e.g., to forgo displaying on the way out when
;; expecting the server to echo messages back and/or to associate
;; outgoing messages with IDs generated for `erc--ephemeral'
;; placeholders.
(defun erc--send-action-perform-ctcp (target string force)
  "Send STRING to TARGET, possibly immediately, with FORCE."
  (erc-send-ctcp-message target (format "ACTION %s" string) force))