Function: rcirc-cmd-invite

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

Signature

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

Documentation

Invite NICK to CHANNEL.

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 invite (nick channel)
  "Invite NICK to CHANNEL."
  (interactive (list
                (completing-read "Invite nick: "
                                 (with-rcirc-server-buffer rcirc-nick-table))
                (read-string "Channel: ")))
  (rcirc-send-string process "INVITE" nick channel))