fixed indenting
authorElijah Saxon <elijah@riseup.net>
Mon, 9 Jan 2006 00:20:48 +0000 (00:20 +0000)
committerElijah Saxon <elijah@riseup.net>
Mon, 9 Jan 2006 00:20:48 +0000 (00:20 +0000)
lib/parseini.in

index 6f56d4228dc3efd1e44ef556bcd46dd14713d262..b9dfd01415091f05b7fc7ebd052ba7b643f1858d 100644 (file)
@@ -8,27 +8,26 @@
 #
 # example ini file:
 # 
-#              fruit = apple
-#              fruit = pear
-#              multiline = this is a multiline \
-#       parameter
+#    fruit = apple
+#    fruit = pear
+#    multiline = this is a multiline \
+#    parameter
 #
-#       # this is a comment
+#    # this is a comment
+#    [colors]  
+#    red = yes
+#    green = no
+#    blue = maybe
 #
-#              [colors]  
-#              red = yes
-#              green = no
-#              blue = maybe
-#              
-#              [ocean] 
-#              fish = red 
-#              fish = blue
+#    [ocean] 
+#    fish = red 
+#    fish = blue
 #       
 # example usage:
-#       > awk -f parseini S=ocean P=fish testfile.ini 
+#    > awk -f parseini S=ocean P=fish testfile.ini 
 # would return: 
-#       red
-#       blue
+#    red
+#    blue
 #
    
 BEGIN { 
@@ -119,7 +118,7 @@ END {
     for (x = 0; x < nline; ++x) { 
         sub(/^[ \r\t]+/, "", line[x]) 
         sub(/[ \r\t]+$/, "", line[x]) 
-     
+    } 
  
     # output the final result
     for (x = 0; x < nline; ++x)