diff src/tokenizer.cpp @ 27:28fec0c67646

make add/remove commands configureable
author carl
date Sun, 12 Feb 2006 10:54:03 -0800
parents 8fe310e5cd44
children 6a2f26976898
line wrap: on
line diff
--- a/src/tokenizer.cpp	Wed Feb 01 10:58:23 2006 -0800
+++ b/src/tokenizer.cpp	Sun Feb 12 10:54:03 2006 -0800
@@ -333,7 +333,8 @@
 
 bool TOKEN::next_char(u_char &uc) {
 	if (pushed) {
-		uc = (u_char)tolower((char)pushed_char);
+		//uc = (u_char)tolower((char)pushed_char);
+		uc = pushed_char;
 		pushed = false;
 		return true;
 	}
@@ -348,7 +349,7 @@
 		int &line = linenumbers.front();
 		line++;
 	}
-	uc = (u_char)tolower((char)uc);
+	//uc = (u_char)tolower((char)uc);
 	return true;
 }