Function: rcirc-cmd-names
rcirc-cmd-names is an interactive and byte-compiled function defined
in rcirc.el.gz.
Signature
(rcirc-cmd-names ARGLIST &optional PROCESS TARGET)
Documentation
Display list of names in CHANNEL or in current channel if CHANNEL is nil.
If called interactively, prompt for a channel when prefix arg is supplied.
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 names (&optional channel)
"Display list of names in CHANNEL or in current channel if CHANNEL is nil.
If called interactively, prompt for a channel when prefix arg is supplied."
(interactive (list (and current-prefix-arg
(read-string "List names in channel: "))))
(rcirc-send-string process "NAMES" (or channel target)))