Changeset 15546 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Jul 20, 2006, 2:52:37 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.