Changeset 36612 in webkit for trunk/JavaScriptCore/pcre/pcre_internal.h
- Timestamp:
- Sep 18, 2008, 2:35:52 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_internal.h
r34858 r36612 381 381 static inline bool isSpaceChar(UChar c) 382 382 { 383 return c < 128 && (charTypeForChar(c) & ctype_space);383 return (c < 128 && (charTypeForChar(c) & ctype_space)) || c == 0x00A0; 384 384 } 385 385
Note:
See TracChangeset
for help on using the changeset viewer.