Function: rcirc-buffer-nick
rcirc-buffer-nick is a byte-compiled function defined in rcirc.el.gz.
Signature
(rcirc-buffer-nick &optional BUFFER)
Documentation
Return the nick associated with BUFFER.
With no argument or nil as argument, use the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-buffer-nick (&optional buffer)
"Return the nick associated with BUFFER.
With no argument or nil as argument, use the current buffer."
(with-current-buffer (or buffer (current-buffer))
(with-rcirc-server-buffer
(or rcirc-nick rcirc-default-nick))))