[comp.emacs] request for addition

layer@akbar.UUCP (Kevin Layer) (02/25/88)

Could you add the following to process.c?  It think it would be
generally useful.

DEFUN ("process-kill-without-query-p", Fprocess_kill_without_query_p,
  Sprocess_kill_without_query_p, 1, 1, 0,
  "Return t or nil, depending on whether or not PROCESS will be killed\n\
without query.")
  (proc)
     register Lisp_Object proc;
{
  CHECK_PROCESS (proc, 0);
  return XPROCESS (proc)->kill_without_query;
}


And this in the obvious place:

  defsubr (&Sprocess_kill_without_query_p);