From: Nathan Froyd Date: Fri, 18 Dec 2009 02:19:30 +0000 (+0000) Subject: 1.0.33.22: fix WITH-MUTEX docstring X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=c553e4be6da2d18f0827f190589c88e837b8b8a6;p=sbcl.git 1.0.33.22: fix WITH-MUTEX docstring Noted on sbcl-devel 2009-12-17 by William Halliburton. --- diff --git a/src/code/thread.lisp b/src/code/thread.lisp index 029633c..dc92196 100644 --- a/src/code/thread.lisp +++ b/src/code/thread.lisp @@ -66,9 +66,9 @@ stale value, use MUTEX-OWNER instead." (sb!xc:defmacro with-mutex ((mutex &key (value '*current-thread*) (wait-p t)) &body body) #!+sb-doc - "Acquire MUTEX for the dynamic scope of BODY, setting it to -NEW-VALUE or some suitable default value if NIL. If WAIT-P is non-NIL -and the mutex is in use, sleep until it is available" + "Acquire MUTEX for the dynamic scope of BODY, setting it to VALUE or +some suitable default value if NIL. If WAIT-P is non-NIL and the mutex +is in use, sleep until it is available" `(dx-flet ((with-mutex-thunk () ,@body)) (call-with-mutex #'with-mutex-thunk diff --git a/version.lisp-expr b/version.lisp-expr index c2944e2..da8ae87 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.33.21" +"1.0.33.22"