]> git.eshelyaron.com Git - emacs.git/commitdiff
minor docstring fixup
authorTom Tromey <tromey@redhat.com>
Sun, 19 Aug 2012 09:36:50 +0000 (03:36 -0600)
committerTom Tromey <tromey@redhat.com>
Sun, 19 Aug 2012 09:36:50 +0000 (03:36 -0600)
src/thread.c

index 4c21418d1c35c3411fada8de208e2837241de115..608c3b8d8f10da14a45e0c9eef2cee5325f364a1 100644 (file)
@@ -348,9 +348,9 @@ CONDITION is the condition variable to wait on.
 The mutex associated with CONDITION must be held when this is called.
 It is an error if it is not held.
 
-This atomically releases the mutex and waits for CONDITION to be
-notified.  When `condition-wait' returns, the mutex will again be
-locked by this thread.  */)
+This releases the mutex and waits for CONDITION to be notified.  When
+`condition-wait' returns, the mutex will again be locked by this
+thread.  */)
   (Lisp_Object condition)
 {
   struct Lisp_CondVar *cvar;
@@ -402,7 +402,7 @@ If ALL is non-nil, all waiting threads are awoken.
 The mutex associated with CONDITION must be held when this is called.
 It is an error if it is not held.
 
-This atomically releases the mutex when notifying CONDITION.  When
+This releases the mutex when notifying CONDITION.  When
 `condition-notify' returns, the mutex will again be locked by this
 thread.  */)
   (Lisp_Object condition, Lisp_Object all)