main.cxx

changeset 34
0a9a5902beaa
parent 33
fd35f6cb5f28
child 36
a8838b5f1213
--- a/main.cxx	Tue Jul 17 20:35:43 2012 +0300
+++ b/main.cxx	Sat Jul 28 17:41:24 2012 +0300
@@ -129,7 +129,7 @@
 	ReadCommands ();
 	
 	// Init stuff
-	InitStringTable();
+	InitStringTable ();
 	InitVariables ();
 	
 	// Prepare reader and writer
@@ -148,8 +148,11 @@
 	w->WriteToFile ();
 	
 	// Clear out the junk
+	printf ("clear r\n");
 	delete r;
+	printf ("clear w\n");
 	delete w;
+	printf ("done!\n");
 }
 
 void error (const char* text, ...) {
@@ -164,8 +167,6 @@
 	if (extdot >= s.len()-4)
 		s.trim (s.len() - extdot);
 	
-	// Add new ".o" extension
 	s += ".o";
-	
 	return s.chars();
 }
\ No newline at end of file

mercurial