]> git.eshelyaron.com Git - emacs.git/commitdiff
Renamed `process-alive-p' to `process-live-p' for consistency with other `-live-p...
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 15 Jun 2011 17:30:41 +0000 (19:30 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 15 Jun 2011 17:30:41 +0000 (19:30 +0200)
doc/lispref/ChangeLog
doc/lispref/processes.texi
lisp/ChangeLog
lisp/subr.el

index 54ad6abdb0794ea18216d1de38c4a72bcbc4cc90..f647bb00f918ff7368294d7d9e161adc46d9ff3b 100644 (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.
index 2284699c82b73a172b605c31518a4b3d3b90b7c7..5d5b11497f72c380b216614e15208646a7313e3e 100644 (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}.
index 7b49352a178761d547e0b1af3b0e04eaf7530b65..622831cb31f87f05838140ce0b8a164c4630d9e3 100644 (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)
index d0ef38c11408ef920d33aebd9d16d90ca48acb36..b328b7e17b71cc0a03847c0554887a822c3f30b3 100644 (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'."