summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <larsi@gnus.org>2011-06-15 19:30:41 +0200
committerLars Magne Ingebrigtsen <larsi@gnus.org>2011-06-15 19:30:41 +0200
commitb96e6cde3e311cd79f8ad134291d41c8c64cc6ad (patch)
tree192328b2b0febc1b51154beb6e60023ce04b7d05 /lisp/subr.el
parentefdcdbf8231deaa720db91f45073d6c00574c240 (diff)
downloademacs-b96e6cde3e311cd79f8ad134291d41c8c64cc6ad.tar.gz
Renamed `process-alive-p' to `process-live-p' for consistency with other `-live-p' functions.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index d0ef38c1140..b328b7e17b7 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -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'."