Function: rcirc-last-quit-line
rcirc-last-quit-line is a byte-compiled function defined in
rcirc.el.gz.
Signature
(rcirc-last-quit-line PROCESS NICK TARGET)
Documentation
Return the line number where NICK left TARGET.
Returns nil if the information is not recorded. PROCESS is the process object for the current connection.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-last-quit-line (process nick target)
"Return the line number where NICK left TARGET.
Returns nil if the information is not recorded.
PROCESS is the process object for the current connection."
(let ((chanbuf (rcirc-get-buffer process target)))
(when chanbuf
(cdr (assoc-string nick (buffer-local-value
'rcirc-recent-quit-alist
chanbuf))))))