Index: libcfa/src/parseconfig.cfa
===================================================================
--- libcfa/src/parseconfig.cfa	(revision 0da94752579e6e8d62d9aa2e565147c5366d2791)
+++ libcfa/src/parseconfig.cfa	(revision 39eb7840874f3d8db548684079e4631fd7c8fd60)
@@ -1,4 +1,2 @@
-
-
 #pragma GCC diagnostic push
 //#pragma GCC diagnostic ignored "-Wunused-parameter"
@@ -74,14 +72,14 @@
 
 
-[ void ] ?{}( & KVPairs kvp ) with ( kvp ) {				// default constructor
+[ void ] ?{}( & KVPairs kvp ) with ( kvp ) {			// default constructor
 	size = 0; max_size = 0; data = 0p;
 }
 
-[ void ] ?{}( & KVPairs kvp, size_t size ) { 				// initialization
+[ void ] ?{}( & KVPairs kvp, size_t size ) {			// initialization
 	kvp.[ size, max_size ] = [ 0, size ];
 	kvp.data = alloc( size );
 }
 
-[ void ] ^?{}( & KVPairs kvp ) with ( kvp ) {				// destructor
+[ void ] ^?{}( & KVPairs kvp ) with ( kvp ) {			// destructor
 	for ( i; size ) free( data[i] );
 	free( data );
@@ -111,5 +109,5 @@
 	  if ( eof( in ) ) return true;
 	  if ( name[0] != '#' ) return false;
-		in | nl;									// ignore remainder of line
+		in | nl;										// ignore remainder of line
 	} // while
 } // comments
@@ -122,13 +120,13 @@
 	ifstream in;
 	try {
-		open( in, config_file );					// open the configuration file for input
+		open( in, config_file );						// open the configuration file for input
 
 		[64] char key;
 		[256] char value;
 
-		while () {									// parameter names can appear in any order
+		while () {										// parameter names can appear in any order
 		  	// NOTE: Must add check to see if already read in value for this key,
 			// once we switch to using hash table as intermediate storage
-			if ( comments( in, 64, key ) ) break;	// eof ?
+		  if ( comments( in, 64, key ) ) break;			// eof ?
 			in | wdi( 256, value );
 
@@ -136,5 +134,5 @@
 
 		  if ( eof( in ) ) break;
-			in | nl;								// ignore remainder of line
+			in | nl;									// ignore remainder of line
 		} // for
 	} catch( open_failure * ex; ex->istream == &in ) {
