Function: rcirc-cmd-msg

rcirc-cmd-msg is an interactive and byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-cmd-msg ARGLIST &optional PROCESS TARGET)

Documentation

Send MESSAGE to CHAN-OR-NICK.

Note: If PROCESS or TARGET are nil, the values given by rcirc-buffer-process and rcirc-target will be used.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(rcirc-define-command msg (chan-or-nick message)
  "Send MESSAGE to CHAN-OR-NICK."
  (interactive (list (completing-read "Message nick: "
                                      (with-rcirc-server-buffer
                                        rcirc-nick-table))
                     (read-string "Message: ")))
  (rcirc-send-message process chan-or-nick message))