Function: rcirc-join-channels
rcirc-join-channels is a byte-compiled function defined in
rcirc.el.gz.
Signature
(rcirc-join-channels PROCESS CHANNELS)
Documentation
Join CHANNELS.
PROCESS is the process object for the current connection.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-join-channels (process channels)
"Join CHANNELS.
PROCESS is the process object for the current connection."
(save-window-excursion
(dolist (channel channels)
(with-rcirc-process-buffer process
(rcirc-cmd-join channel process)))))