Function: process-get
process-get is a byte-compiled function defined in subr.el.gz.
Signature
(process-get PROCESS PROPNAME)
Documentation
Return the value of PROCESS' PROPNAME property.
This is the last value stored with (process-put PROCESS PROPNAME VALUE).
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
;; process plist management
(defun process-get (process propname)
"Return the value of PROCESS' PROPNAME property.
This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
(plist-get (process-plist process) propname))