Function: erc-channel-names
erc-channel-names is an interactive and byte-compiled function defined
in erc.el.gz.
Signature
(erc-channel-names)
Documentation
Run "/names #channel" in the current channel.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-channel-names ()
"Run \"/names #channel\" in the current channel."
(interactive)
(erc-set-active-buffer (current-buffer))
(let ((tgt (erc-default-target)))
(if tgt (erc-load-irc-script-lines (list (concat "/names " tgt)))
(erc-display-message nil 'error (current-buffer) 'no-target))))