Function: rcirc-cmd-whois
rcirc-cmd-whois is an interactive and byte-compiled function defined
in rcirc.el.gz.
Signature
(rcirc-cmd-whois ARGLIST &optional PROCESS TARGET)
Documentation
Request information from server about 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 whois (nick)
"Request information from server about NICK."
(interactive (list (completing-read
"Whois: "
(with-rcirc-server-buffer rcirc-nick-table))))
(rcirc-send-string process "WHOIS" nick))