Update of /cvsroot/sbcl/sbcl/doc/manual
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv16919/doc/manual
Modified Files:
threading.texinfo
Log Message:
0.9.15.6:
Fix typo in threading.texinfo code example (extra paren).
Index: threading.texinfo
===================================================================
RCS file: /cvsroot/sbcl/sbcl/doc/manual/threading.texinfo,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- threading.texinfo 15 Oct 2005 08:40:36 -0000 1.5
+++ threading.texinfo 29 Jul 2006 01:58:37 -0000 1.6
@@ -91,7 +91,7 @@
(with-mutex (*a-mutex*)
(format t "Thread ~A got the lock~%" *current-thread*)
(sleep (random 5)))
- (format t "Thread ~A dropped lock, dying now~%" *current-thread*)))
+ (format t "Thread ~A dropped lock, dying now~%" *current-thread*))
(make-thread #'thread-fn)
(make-thread #'thread-fn)
|