Function: erc-get-channel-nickname-list

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

Signature

(erc-get-channel-nickname-list)

Documentation

Return a list of known nicknames on the current channel.

Source Code

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