Changeset 15546 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jul 20, 2006, 2:52:37 PM (19 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r15526 r15546 1 2006-07-20 Steve Falkenburg <[email protected]> 2 3 Fix the build 4 5 * kjs/function.cpp: 6 (KJS::escapeStringForPrettyPrinting): 7 1 8 2006-07-19 Anders Carlsson <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/function.cpp
r15526 r15546 948 948 char hexValue[7]; 949 949 950 #if PLATFORM(WIN_OS) 951 _snprintf(hexValue, 7, "\\u%04x", c); 952 #else 950 953 snprintf(hexValue, 7, "\\u%04x", c); 954 #endif 951 955 escapedString += hexValue; 952 956 }
Note:
See TracChangeset
for help on using the changeset viewer.