]> SALOME platform Git repositories - tools/hxx2salome.git/commitdiff
Salome HOME
small update for usage in hxx2salome
authorcrouzet <crouzet>
Tue, 25 Oct 2005 14:21:48 +0000 (14:21 +0000)
committercrouzet <crouzet>
Tue, 25 Oct 2005 14:21:48 +0000 (14:21 +0000)
scripts/parse01.awk

index 290640247c6236aa1be8f07ab72200f02baf0d1d..8bec01785f19515a9bc643fab390ac7d95f42b09 100644 (file)
@@ -1,5 +1,5 @@
-# This awk program deletes C like comments '*/  ...  /*'  - not yet used
-awk '{
+# This awk program deletes C like comments '*/  ...  /*'  
+{
     if (t = index($0, "/*")) {
        if (t > 1)
            tmp = substr($0, 1, t - 1)
@@ -17,4 +17,4 @@ awk '{
            $0 = tmp
     }
     print $0
-}'
+}