]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispref/processes.texi (Query Before Exit): Remove obsolete function
authorChong Yidong <cyd@gnu.org>
Sun, 8 Apr 2012 13:30:26 +0000 (21:30 +0800)
committerChong Yidong <cyd@gnu.org>
Sun, 8 Apr 2012 13:30:26 +0000 (21:30 +0800)
process-kill-without-query.

Fixes: debbugs:11190
doc/lispref/ChangeLog
doc/lispref/processes.texi

index eb07b7c10ca2a61be09a29241b403c8235e18425..30c8ad2e4ae92db4bb5e35a128d2bcd239ab923a 100644 (file)
@@ -1,3 +1,8 @@
+2012-04-08  Chong Yidong  <cyd@gnu.org>
+
+       * processes.texi (Query Before Exit): Remove obsolete function
+       process-kill-without-query (Bug#11190).
+
 2012-04-08  Glenn Morris  <rgm@gnu.org>
 
        * files.texi, frames.texi, loading.texi, os.texi, processes.texi:
index d251240d19864e61edcf2c9356f5a3a44ce9ddf0..f59937da15d241c98167ecb4e157f634df8d7b6b 100644 (file)
@@ -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