Function: nntp-find-connection-buffer
nntp-find-connection-buffer is a byte-compiled function defined in
nntp.el.gz.
Signature
(nntp-find-connection-buffer BUFFER)
Documentation
Return the process connection buffer tied to BUFFER.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nntp.el.gz
(defun nntp-find-connection-buffer (buffer)
"Return the process connection buffer tied to BUFFER."
(let ((process (nntp-find-connection buffer)))
(when process
(process-buffer process))))