Function: process-put

process-put is a byte-compiled function defined in subr.el.gz.

Signature

(process-put PROCESS PROPNAME VALUE)

Documentation

Change PROCESS' PROPNAME property to VALUE.

It can be retrieved with (process-get PROCESS PROPNAME).

Together with process-get, this can be used to store and retrieve miscellaneous values associated with the process.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun process-put (process propname value)
  "Change PROCESS' PROPNAME property to VALUE.
It can be retrieved with `(process-get PROCESS PROPNAME)'.

Together with `process-get', this can be used to store and retrieve
miscellaneous values associated with the process."
  (set-process-plist process
		     (plist-put (process-plist process) propname value)))