]> git.eshelyaron.com Git - emacs.git/commitdiff
(Process Information): Note that process-status does not accept buffer
authorChong Yidong <cyd@stupidchicken.com>
Tue, 28 Oct 2008 20:16:18 +0000 (20:16 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 28 Oct 2008 20:16:18 +0000 (20:16 +0000)
names.

doc/lispref/processes.texi

index c0beb7a67df5fd399e0d8843a90c356acb6bfc91..e3bbb88899a90f6793729d53f454444188f475ad 100644 (file)
@@ -791,8 +791,8 @@ This function returns the name of @var{process}.
 
 @defun process-status process-name
 This function returns the status of @var{process-name} as a symbol.
-The argument @var{process-name} must be a process, a buffer, a
-process name (string) or a buffer name (string).
+The argument @var{process-name} must be a process, a buffer, or a
+process name (string).
 
 The possible values for an actual subprocess are:
 
@@ -823,10 +823,6 @@ if @var{process-name} is not the name of an existing process.
 
 @smallexample
 @group
-(process-status "shell")
-     @result{} run
-@end group
-@group
 (process-status (get-buffer "*shell*"))
      @result{} run
 @end group