Function: rcirc-cmd-kick

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

Signature

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

Documentation

Kick NICK from current 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 kick (nick reason)
  "Kick NICK from current channel."
  (interactive (list
                (completing-read "Kick nick: "
                                 (rcirc-channel-nicks
                                  (rcirc-buffer-process)
                                  rcirc-target))
                (read-from-minibuffer "Kick reason: ")))
  (rcirc-send-string process "KICK" target nick : reason))