Function: rcirc-nick-channels
rcirc-nick-channels is a byte-compiled function defined in
rcirc.el.gz.
Signature
(rcirc-nick-channels PROCESS NICK)
Documentation
Return list of channels for NICK.
PROCESS is the process object for the current connection.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-nick-channels (process nick)
"Return list of channels for NICK.
PROCESS is the process object for the current connection."
(with-rcirc-process-buffer process
(mapcar (lambda (x) (car x))
(gethash nick rcirc-nick-table))))