Renamed process-alive-p' to process-live-p' for consistency with other `-live-p' functions.

This commit is contained in:
Lars Magne Ingebrigtsen 2011-06-15 19:30:41 +02:00
parent efdcdbf823
commit b96e6cde3e
4 changed files with 12 additions and 2 deletions

View file

@ -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.

View file

@ -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}.

View file

@ -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)

View file

@ -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'."