Function: erc-cmd-ME
erc-cmd-ME is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-ME LINE)
Documentation
Send LINE as an action.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-ME (line)
"Send LINE as an action."
(cond
((string-match "^\\s-\\(.*\\)$" line)
(let ((s (match-string 1 line)))
(erc-log (format "cmd: ME: %s" s))
(erc-send-action (erc-default-target) s))
t)
(t nil)))