Function: erc-cmd-WII
erc-cmd-WII is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-WII NICK)
Documentation
Display whois information for NICK, including idle time.
This is a convenience function which calls erc-cmd-WHOIS with
the given NICK for both arguments. Using NICK in place of the
server argument -- effectively delegating to the IRC network the
looking up of the server to which NICK is connected -- is not
standardized, but is widely supported across IRC networks.
See erc-cmd-WHOIS for more details.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-WII (nick)
"Display whois information for NICK, including idle time.
This is a convenience function which calls `erc-cmd-WHOIS' with
the given NICK for both arguments. Using NICK in place of the
server argument -- effectively delegating to the IRC network the
looking up of the server to which NICK is connected -- is not
standardized, but is widely supported across IRC networks.
See `erc-cmd-WHOIS' for more details."
(erc-cmd-WHOIS nick nick))