Changeset 37415 in webkit for trunk/JavaScriptCore
- Timestamp:
- Oct 8, 2008, 2:18:08 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r37412 r37415 1 2008-10-08 Maciej Stachowiak <[email protected]> 2 3 Reviewed by Oliver Hunt. 4 5 - correctly handle appending -0 to a string, it should stringify as just 0 6 7 * kjs/ustring.cpp: 8 (JSC::concatenate): 9 1 10 2008-10-08 Prasanth Ullattil <[email protected]> 2 11 -
trunk/JavaScriptCore/kjs/ustring.cpp
r37089 r37415 768 768 if (isnan(d)) 769 769 return concatenate(rep, "NaN"); 770 771 if (d == 0.0) // stringify -0 as 0 772 d = 0.0; 770 773 771 774 char buf[80];
Note:
See TracChangeset
for help on using the changeset viewer.