Renamed process-alive-p' to
process-live-p' for consistency with other `-live-p' functions.
This commit is contained in:
parent
efdcdbf823
commit
b96e6cde3e
4 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* processes.texi (Process Information): Renamed `process-alive-p'
|
||||
to `process-live-p' for consistency with other `-live-p' functions.
|
||||
|
||||
2011-06-03 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Document wide integers better.
|
||||
|
|
|
@ -859,7 +859,7 @@ For a network connection, @code{process-status} returns one of the symbols
|
|||
closed the connection, or Emacs did @code{delete-process}.
|
||||
@end defun
|
||||
|
||||
@defun process-alive-p process
|
||||
@defun process-live-p process
|
||||
This function returns nin-@code{nil} if @var{process} is alive. A
|
||||
process is considered alive if its status is @code{run}, @code{open},
|
||||
@code{listen}, @code{connect} or @code{stop}.
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* subr.el (process-live-p): Renamed from `process-alive-p' for
|
||||
consistency with other `-live-p' functions.
|
||||
|
||||
2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* window.el (same-window-buffer-names, same-window-regexps)
|
||||
|
|
|
@ -1805,7 +1805,7 @@ Signal an error if the program returns with a non-zero exit status."
|
|||
(forward-line 1))
|
||||
(nreverse lines)))))
|
||||
|
||||
(defun process-alive-p (process)
|
||||
(defun process-live-p (process)
|
||||
"Returns non-nil if PROCESS is alive.
|
||||
A process is considered alive if its status is `run', `open',
|
||||
`listen', `connect' or `stop'."
|
||||
|
|
Loading…
Add table
Reference in a new issue