summaryrefslogtreecommitdiff
path: root/doc/lispref/threads.texi
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-08-27 13:07:14 -0600
committerTom Tromey <tromey@redhat.com>2013-08-27 13:07:14 -0600
commitc1456e303a4502f637a87681dd623f589c25ed23 (patch)
tree4844c5195e6eb4d3c3003b25129800e68dcdc483 /doc/lispref/threads.texi
parent44586142ad519003abe97e66b3cea0f6bbb020c2 (diff)
downloademacs-c1456e303a4502f637a87681dd623f589c25ed23.tar.gz
emacs-c1456e303a4502f637a87681dd623f589c25ed23.tar.bz2
emacs-c1456e303a4502f637a87681dd623f589c25ed23.zip
zap until-condition docs
Diffstat (limited to 'doc/lispref/threads.texi')
-rw-r--r--doc/lispref/threads.texi9
1 files changed, 1 insertions, 8 deletions
diff --git a/doc/lispref/threads.texi b/doc/lispref/threads.texi
index c846993172f..b3a70ee215c 100644
--- a/doc/lispref/threads.texi
+++ b/doc/lispref/threads.texi
@@ -192,8 +192,7 @@ and waiting on the condition variable. For example:
@end example
The mutex ensures atomicity, and the loop is for robustness---there
-may be spurious notifications. Emacs Lisp provides a macro,
-@code{until-condition}, to do this automatically.
+may be spurious notifications.
Similarly, the mutex must be held before notifying the condition.
The typical, and best, approach is to acquire the mutex, make the
@@ -251,9 +250,3 @@ Return the name of @var{cond}, as passed to
Return the mutex associated with @var{cond}. Note that the associated
mutex cannot be changed.
@end defun
-
-@defmac until-condition test cond
-Acquire the mutex associated with @var{cond}, and then loop, invoking
-the form @var{test}. If @var{test} evaluates to @code{nil}, invoke
-@code{condition-wait} on @var{cond}.
-@end defmac