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).
Together with process-put, this can be used to store and retrieve
miscellaneous values associated with the process.
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)'.
Together with `process-put', this can be used to store and retrieve
miscellaneous values associated with the process."
(declare (side-effect-free t))
(plist-get (process-plist process) propname))