Function: set-process-plist

set-process-plist is a function defined in process.c.

Signature

(set-process-plist PROCESS PLIST)

Documentation

Replace the plist of PROCESS with PLIST. Return PLIST.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

// Defined in /usr/src/emacs/src/process.c
{
  CHECK_PROCESS (process);
  CHECK_LIST (plist);

  pset_plist (XPROCESS (process), plist);
  return plist;
}