Author: [EMAIL PROTECTED]
Date: Wed Oct 15 01:50:34 2008
New Revision: 505

Modified:
    branches/bleeding_edge/src/log.cc

Log:
Review-related changes


Modified: branches/bleeding_edge/src/log.cc
==============================================================================
--- branches/bleeding_edge/src/log.cc   (original)
+++ branches/bleeding_edge/src/log.cc   Wed Oct 15 01:50:34 2008
@@ -707,8 +707,13 @@
                stream.Add("%u", time);
                break;
              }
+            case '%':
+              // %% expands (contracts really) to %.
+              stream.Put('%');
+              break;
              default:
                // All other %'s expand to themselves.
+              stream.Put('%');
                stream.Put(*p);
                break;
            }

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to