Revert "Fix bracket expression matches a character at gawk"
authorJan Kotas <jkotas@microsoft.com>
Wed, 30 Mar 2016 21:32:52 +0000 (14:32 -0700)
committerJan Kotas <jkotas@microsoft.com>
Wed, 30 Mar 2016 21:32:52 +0000 (14:32 -0700)
generateversionscript.awk

index 168d3984360e61f420c21e589782339e6939092c..d1c294be5818d1683ab2d925a6749374c906b735 100644 (file)
@@ -8,7 +8,7 @@ BEGIN {
        gsub(/\r/,"", $0);
        
        # Skip empty lines and comment lines starting with semicolon
-       if (NF && !match($0, /^[[:space:]]*;/))
+       if (NF && !match($0, /^[:space:]*;/))
        {
                print "        "  $0 ";";
        }