Review-related changes


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@505 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent a213e39c
...@@ -707,8 +707,13 @@ bool Logger::Setup() { ...@@ -707,8 +707,13 @@ bool Logger::Setup() {
stream.Add("%u", time); stream.Add("%u", time);
break; break;
} }
case '%':
// %% expands (contracts really) to %.
stream.Put('%');
break;
default: default:
// All other %'s expand to themselves. // All other %'s expand to themselves.
stream.Put('%');
stream.Put(*p); stream.Put(*p);
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment