Function: erc-send-action
erc-send-action is a byte-compiled function defined in erc.el.gz.
Signature
(erc-send-action TGT STR &optional FORCE)
Documentation
Send CTCP ACTION information described by STR to TGT.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;;; I/O interface
;; send interface
(defun erc-send-action (tgt str &optional force)
"Send CTCP ACTION information described by STR to TGT."
(erc-send-ctcp-message tgt (format "ACTION %s" str) force)
(erc-display-message
nil 'input (current-buffer)
'ACTION ?n (erc-current-nick) ?a str ?u "" ?h ""))