Respect more keyword args in `make-process'

* process.c (Fmake_process): Respect `:sentinel' and `:filter'
keywords as documented.
This commit is contained in:
Daiki Ueno 2015-04-11 16:01:18 +09:00
parent 878058df46
commit 7c7b96eba0

View file

@ -1483,8 +1483,8 @@ usage: (make-process &rest ARGS) */)
pset_plist (XPROCESS (proc), Qnil);
pset_type (XPROCESS (proc), Qreal);
pset_buffer (XPROCESS (proc), buffer);
pset_sentinel (XPROCESS (proc), Qinternal_default_process_sentinel);
pset_filter (XPROCESS (proc), Qinternal_default_process_filter);
pset_sentinel (XPROCESS (proc), Fplist_get (contact, QCsentinel));
pset_filter (XPROCESS (proc), Fplist_get (contact, QCfilter));
pset_command (XPROCESS (proc), Fcopy_sequence (command));
if (tem = Fplist_get (contact, QCnoquery), !NILP (tem))