diff options
| author | Lars Magne Ingebrigtsen | 2011-06-15 19:30:41 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-06-15 19:30:41 +0200 |
| commit | b96e6cde3e311cd79f8ad134291d41c8c64cc6ad (patch) | |
| tree | 192328b2b0febc1b51154beb6e60023ce04b7d05 | |
| parent | efdcdbf8231deaa720db91f45073d6c00574c240 (diff) | |
| download | emacs-b96e6cde3e311cd79f8ad134291d41c8c64cc6ad.tar.gz emacs-b96e6cde3e311cd79f8ad134291d41c8c64cc6ad.zip | |
Renamed `process-alive-p' to `process-live-p' for consistency with other `-live-p' functions.
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
4 files changed, 12 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 54ad6abdb07..f647bb00f91 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * processes.texi (Process Information): Renamed `process-alive-p' | ||
| 4 | to `process-live-p' for consistency with other `-live-p' functions. | ||
| 5 | |||
| 1 | 2011-06-03 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2011-06-03 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Document wide integers better. | 8 | Document wide integers better. |
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 2284699c82b..5d5b11497f7 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -859,7 +859,7 @@ For a network connection, @code{process-status} returns one of the symbols | |||
| 859 | closed the connection, or Emacs did @code{delete-process}. | 859 | closed the connection, or Emacs did @code{delete-process}. |
| 860 | @end defun | 860 | @end defun |
| 861 | 861 | ||
| 862 | @defun process-alive-p process | 862 | @defun process-live-p process |
| 863 | This function returns nin-@code{nil} if @var{process} is alive. A | 863 | This function returns nin-@code{nil} if @var{process} is alive. A |
| 864 | process is considered alive if its status is @code{run}, @code{open}, | 864 | process is considered alive if its status is @code{run}, @code{open}, |
| 865 | @code{listen}, @code{connect} or @code{stop}. | 865 | @code{listen}, @code{connect} or @code{stop}. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7b49352a178..622831cb31f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * subr.el (process-live-p): Renamed from `process-alive-p' for | ||
| 4 | consistency with other `-live-p' functions. | ||
| 5 | |||
| 1 | 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * window.el (same-window-buffer-names, same-window-regexps) | 8 | * window.el (same-window-buffer-names, same-window-regexps) |
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." | |||
| 1805 | (forward-line 1)) | 1805 | (forward-line 1)) |
| 1806 | (nreverse lines))))) | 1806 | (nreverse lines))))) |
| 1807 | 1807 | ||
| 1808 | (defun process-alive-p (process) | 1808 | (defun process-live-p (process) |
| 1809 | "Returns non-nil if PROCESS is alive. | 1809 | "Returns non-nil if PROCESS is alive. |
| 1810 | A process is considered alive if its status is `run', `open', | 1810 | A process is considered alive if its status is `run', `open', |
| 1811 | `listen', `connect' or `stop'." | 1811 | `listen', `connect' or `stop'." |