src/format.cpp

changeset 134
eca2fc0acaa2
parent 133
dbbdb870c835
child 137
73d057b030d0
--- a/src/format.cpp	Sat Jul 12 23:04:46 2014 +0300
+++ b/src/format.cpp	Sun Jul 20 17:25:36 2014 +0300
@@ -70,7 +70,7 @@
 		char mod = '\0';
 
 		// handle modifiers
-		if (fmt[pos + ofs] == 's' || fmt[pos + ofs] == 'x' || fmt[pos + ofs] == 'd')
+		if (fmt[pos + ofs] == 's' or fmt[pos + ofs] == 'x' or fmt[pos + ofs] == 'd')
 		{
 			mod = fmt[pos + ofs];
 			ofs++;
@@ -111,7 +111,7 @@
 	Lexer* lx = Lexer::getCurrentLexer();
 	String fileinfo;
 
-	if (lx != null && lx->hasValidToken())
+	if (lx != null and lx->hasValidToken())
 	{
 		Lexer::TokenInfo* tk = lx->token();
 		fileinfo = format ("%1:%2:%3: ", tk->file, tk->line, tk->column);

mercurial