Changeset 1623 in webkit for trunk/JavaScriptCore/kjs/regexp.cpp
- Timestamp:
- Jul 21, 2002, 10:38:39 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp.cpp
r1326 r1623 29 29 30 30 RegExp::RegExp(const UString &p, int f) 31 : pattern(p), fl ags(f)31 : pattern(p), flgs(f) 32 32 { 33 33 #ifdef HAVE_PCREPOSIX … … 36 36 int errorOffset; 37 37 38 if (fl ags & IgnoreCase)38 if (flgs & IgnoreCase) 39 39 pcreflags |= PCRE_CASELESS; 40 40 41 if (fl ags & Multiline)41 if (flgs & Multiline) 42 42 pcreflags |= PCRE_MULTILINE; 43 43
Note:
See TracChangeset
for help on using the changeset viewer.