]> git.eshelyaron.com Git - emacs.git/commitdiff
zap until-condition docs
authorTom Tromey <tromey@redhat.com>
Tue, 27 Aug 2013 19:07:14 +0000 (13:07 -0600)
committerTom Tromey <tromey@redhat.com>
Tue, 27 Aug 2013 19:07:14 +0000 (13:07 -0600)
doc/lispref/threads.texi

index c846993172ff4e8d70a1c13b4a1bd3a2d8e80745..b3a70ee215c082ee1fb5b55037e310b95e8c0258 100644 (file)
@@ -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