Author: rgrjr
Date: Sat Nov 4 14:28:25 2006
New Revision: 15109
Modified:
trunk/docs/pdds/clip/pdd25_concurrency.pod
Changes in other areas also in this revision:
Modified:
trunk/compilers/imcc/imclexer.c
trunk/compilers/imcc/imcparser.c
trunk/docs/stm/howto.pod
Log:
* compilers/imcc/imcparser.c:
* compilers/imcc/imclexer.c:
+ Fix some cuddled elses. The remainder are in *.c or *.l files,
which I am not sure I can test properly.
* docs/stm/howto.pod:
* docs/pdds/clip/pdd25_concurrency.pod:
+ Quoted code also ought to be conformant.
Modified: trunk/docs/pdds/clip/pdd25_concurrency.pod
==============================================================================
--- trunk/docs/pdds/clip/pdd25_concurrency.pod (original)
+++ trunk/docs/pdds/clip/pdd25_concurrency.pod Sat Nov 4 14:28:25 2006
@@ -772,7 +772,8 @@
if (thork()) { # fork a thread
# thread A
func1($aaa, $bbb, $ccc);
- } else {
+ }
+ else {
# thread B
func2($bbb.property);
}