Path: utzoo!mnetor!uunet!lll-winken!lll-lcc!lll-tis!ames!ll-xn!mit-eddie!akbar.UUCP!layer From: layer@akbar.UUCP (Kevin Layer) Newsgroups: comp.emacs Subject: request for addition Message-ID: <8802241923.AA08438@akbar> Date: 24 Feb 88 19:23:57 GMT Sender: daemon@eddie.MIT.EDU Lines: 17 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);