From 9fe9631c2f2a401c96a38b8db525a2e63df84524 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 8 Apr 2012 21:30:26 +0800 Subject: [PATCH] * doc/lispref/processes.texi (Query Before Exit): Remove obsolete function process-kill-without-query. Fixes: debbugs:11190 --- doc/lispref/ChangeLog | 5 +++++ doc/lispref/processes.texi | 24 +++--------------------- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index eb07b7c10ca..30c8ad2e4ae 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,8 @@ +2012-04-08 Chong Yidong + + * processes.texi (Query Before Exit): Remove obsolete function + process-kill-without-query (Bug#11190). + 2012-04-08 Glenn Morris * files.texi, frames.texi, loading.texi, os.texi, processes.texi: diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index d251240d198..f59937da15d 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi @@ -1629,35 +1629,17 @@ This returns the query flag of @var{process}. This function sets the query flag of @var{process} to @var{flag}. It returns @var{flag}. +Here is an example of using @code{set-process-query-on-exit-flag} on a +shell process to avoid querying: + @smallexample @group -;; @r{Don't query about the shell process} (set-process-query-on-exit-flag (get-process "shell") nil) @result{} t @end group @end smallexample @end defun -@defun process-kill-without-query process &optional do-query -This function clears the query flag of @var{process}, so that -Emacs will not query the user on account of that process. - -Actually, the function does more than that: it returns the old value of -the process's query flag, and sets the query flag to @var{do-query}. -Please don't use this function to do those things any more---please -use the newer, cleaner functions @code{process-query-on-exit-flag} and -@code{set-process-query-on-exit-flag} in all but the simplest cases. -The only way you should use @code{process-kill-without-query} nowadays -is like this: - -@smallexample -@group -;; @r{Don't query about the shell process} -(process-kill-without-query (get-process "shell")) -@end group -@end smallexample -@end defun - @node System Processes @section Accessing Other Processes @cindex system processes -- 2.39.2