Function: erc-nick-popup
erc-nick-popup is a byte-compiled function defined in
erc-button.el.gz.
Signature
(erc-nick-popup NICK)
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-button.el.gz
(defun erc-nick-popup (nick)
(let* ((completion-ignore-case t)
(alist (append erc-nick-popup-alist erc-button--nick-popup-alist))
(action (completing-read (format-message
"What action to take on `%s'? " nick)
alist))
(code (cdr (assoc action alist))))
(when code
(erc-set-active-buffer (current-buffer))
(if (functionp code)
(funcall code nick)
(eval code `((nick . ,nick)))))))