Author: greg.ercolano
Date: 2010-12-03 09:52:24 -0800 (Fri, 03 Dec 2010)
New Revision: 574
Log:
Fixed HTML problem with '<' in for() example.



Modified:
   trunk/cmp.php

Modified: trunk/cmp.php
===================================================================
--- trunk/cmp.php       2010-12-03 02:34:29 UTC (rev 573)
+++ trunk/cmp.php       2010-12-03 17:52:24 UTC (rev 574)
@@ -736,7 +736,7 @@
     }
 
     int function2(int arg) {
-      for (int i=0; i<arg; i++) {
+      for (int i=0; i&lt;arg; i++) {
         stuff(i);
       }
       while (something) {

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to