(Fset_process_plist): Fixed return value.
This commit is contained in:
parent
e519464cfb
commit
26a086c6a4
1 changed files with 2 additions and 1 deletions
|
@ -1049,7 +1049,7 @@ DEFUN ("process-plist", Fprocess_plist, Sprocess_plist,
|
|||
|
||||
DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
|
||||
2, 2, 0,
|
||||
doc: /* Replace the plist of PROCESS with PLIST. */)
|
||||
doc: /* Replace the plist of PROCESS with PLIST. Returns PLIST. */)
|
||||
(process, plist)
|
||||
register Lisp_Object process, plist;
|
||||
{
|
||||
|
@ -1057,6 +1057,7 @@ DEFUN ("set-process-plist", Fset_process_plist, Sset_process_plist,
|
|||
CHECK_LIST (plist);
|
||||
|
||||
XPROCESS (process)->plist = plist;
|
||||
return plist;
|
||||
}
|
||||
|
||||
#if 0 /* Turned off because we don't currently record this info
|
||||
|
|
Loading…
Add table
Reference in a new issue