Revision: 49434
          http://brlcad.svn.sourceforge.net/brlcad/?rev=49434&view=rev
Author:   n_reed
Date:     2012-02-15 21:54:25 +0000 (Wed, 15 Feb 2012)
Log Message:
-----------
another missed ignore

Modified Paths:
--------------
    brlcad/trunk/src/other/step/src/express/expscan.l

Modified: brlcad/trunk/src/other/step/src/express/expscan.l
===================================================================
--- brlcad/trunk/src/other/step/src/express/expscan.l   2012-02-15 21:10:54 UTC 
(rev 49433)
+++ brlcad/trunk/src/other/step/src/express/expscan.l   2012-02-15 21:54:25 UTC 
(rev 49434)
@@ -195,7 +195,10 @@
 
 /* Added * at the end of next rule (to make lexer faster) - DEL */
 <*>[\t ]* { IGNORE_TOKEN; }
-<*>'\n' { NEWLINE; }
+<*>'\n' {
+    NEWLINE;
+    IGNORE_TOKEN;
+}
 
 <code>"--"[^\n]*'\n' {
     NEWLINE;
@@ -318,7 +321,10 @@
 
 <comment> {
 
-'\n' { NEWLINE; IGNORE_TOKEN; }
+'\n' {
+    NEWLINE;
+    IGNORE_TOKEN;
+}
 [^*()\n]* { IGNORE_TOKEN; }
 [*()] { IGNORE_TOKEN; }
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to