Function: erc-button-cmd-MSG
erc-button-cmd-MSG is a byte-compiled function defined in
erc-button.el.gz.
Signature
(erc-button-cmd-MSG NICK)
Documentation
Prompt for a message to NICK, and send it via erc-cmd-MSG.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-button.el.gz
(defun erc-button-cmd-MSG (nick)
"Prompt for a message to NICK, and send it via `erc-cmd-MSG'."
(let ((msg (read-string (concat "Message to " nick ": "))))
(erc-cmd-MSG (concat nick " " msg))))