Changeset 18161 in webkit
- Timestamp:
- Dec 11, 2006, 3:10:39 PM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r18123 r18161 1 2006-12-11 David Hyatt <hyatt@apple.com> 2 3 Fix the failing layout test. Just remove Unicode::isSpace and 4 revert StringImpl to do the same thing it was doing before. 5 6 Reviewed by darin 7 8 * wtf/unicode/icu/UnicodeIcu.h: 9 * wtf/unicode/qt4/UnicodeQt4.h: 10 1 11 2006-12-09 George Staikos <staikos@kde.org> 2 12 -
trunk/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h
r18108 r18161 222 222 } 223 223 224 inline bool isSpace(int32_t c)225 {226 return !!u_isspace(c);227 }228 229 224 inline bool isPunct(int32_t c) 230 225 { -
trunk/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h
r18098 r18161 229 229 } 230 230 231 inline bool isSpace(int32_t c)232 {233 return (c & 0xffff0000) == 0 && QChar((unsigned short)c).isSpace();234 }235 236 231 inline bool isPunct(int32_t c) 237 232 {
Note:
See TracChangeset
for help on using the changeset viewer.