Function: erc-cmd-MSG

erc-cmd-MSG is a byte-compiled function defined in erc.el.gz.

Signature

(erc-cmd-MSG LINE)

Documentation

Send a message to the channel or user given as the first word in LINE.

The rest of LINE is the message to send.

Aliases

erc-cmd-M

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-MSG (line)
  "Send a message to the channel or user given as the first word in LINE.

The rest of LINE is the message to send."
  (erc-message "PRIVMSG" line))