Function: erc-get-channel-nickname-alist

erc-get-channel-nickname-alist is a byte-compiled function defined in erc.el.gz.

Signature

(erc-get-channel-nickname-alist)

Documentation

Return an alist of known nicknames on the current channel.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-get-channel-nickname-alist ()
  "Return an alist of known nicknames on the current channel."
  (let (nicks)
    (when (hash-table-p erc-channel-users)
      (maphash (lambda (_n cdata)
                 (setq nicks
                       (cons (cons (erc-server-user-nickname (car cdata)) nil)
                             nicks)))
               erc-channel-users)
      nicks)))