diff lwbasic/main.c @ 30:bcd532a90e53

Renamed "compiler" to "parser" for more consistent terminology
author lost@l-w.ca
date Thu, 03 Feb 2011 21:19:11 -0700
parents 87590f43e76d
children
line wrap: on
line diff
--- a/lwbasic/main.c	Fri Jan 28 22:35:04 2011 -0700
+++ b/lwbasic/main.c	Thu Feb 03 21:19:11 2011 -0700
@@ -92,7 +92,7 @@
 	PROGVER
 };
 
-extern void compiler(cstate *state);
+extern void parser(cstate *state);
 
 int main(int argc, char **argv)
 {
@@ -100,7 +100,7 @@
 
 	lw_cmdline_parse(&cmdline_parser, argc, argv, 0, 0, &state);
 
-	compiler(&state);
+	parser(&state);
 
 	exit(0);
 }