From: Eli Zaretskii Date: Sat, 28 Jun 2025 19:17:06 +0000 (+0300) Subject: ; * doc/lispref/threads.texi (Condition Variables): Fix wording. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=49e618c1d10ea9f5c2f21972c22265cbdc18c72b;p=emacs.git ; * doc/lispref/threads.texi (Condition Variables): Fix wording. (cherry picked from commit e51ff3ee664ecc848ed99f2f715e9a33208a8d66) --- diff --git a/doc/lispref/threads.texi b/doc/lispref/threads.texi index 3a7c3815fb1..3d9ebf08073 100644 --- a/doc/lispref/threads.texi +++ b/doc/lispref/threads.texi @@ -257,7 +257,7 @@ calling this. Ordinarily a single waiting thread is woken by @code{condition-notify}; but if @var{all} is not @code{nil}, then all threads waiting on @var{cond} are notified. -@code{condition-notify} releases the associated mutex while waiting. +@code{condition-notify} releases the associated mutex. This allows other threads to acquire the mutex in order to wait on the condition. @c why bother?