Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b96e6cde
Commit
b96e6cde
authored
Jun 15, 2011
by
Lars Magne Ingebrigtsen
Browse files
Renamed `process-alive-p' to `process-live-p' for consistency with other `-live-p' functions.
parent
efdcdbf8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
2 deletions
+12
-2
doc/lispref/ChangeLog
doc/lispref/ChangeLog
+5
-0
doc/lispref/processes.texi
doc/lispref/processes.texi
+1
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/subr.el
lisp/subr.el
+1
-1
No files found.
doc/lispref/ChangeLog
View file @
b96e6cde
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.
...
...
doc/lispref/processes.texi
View file @
b96e6cde
...
...
@@ -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-
a
live-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}.
...
...
lisp/ChangeLog
View file @
b96e6cde
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)
...
...
lisp/subr.el
View file @
b96e6cde
...
...
@@ -1805,7 +1805,7 @@ Signal an error if the program returns with a non-zero exit status."
(
forward-line
1
))
(
nreverse
lines
)))))
(
defun
process-
a
live-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'."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment