Changeset 17372 in webkit for trunk/JavaScriptCore/pcre/pcre_exec.c
- Timestamp:
- Oct 27, 2006, 9:48:28 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_exec.c
r16155 r17372 43 43 possible. There are also some static supporting functions. */ 44 44 45 46 45 #include "pcre_internal.h" 47 46 47 /* Avoid warnings on Windows. */ 48 #undef min 49 #undef max 48 50 49 51 /* Structure for building a chain of data that actually lives on the … … 2147 2149 #endif /* SUPPORT_UTF8 */ 2148 2150 2151 #if !PCRE_UTF16 2149 2152 /* When not in UTF-8 mode, load a single-byte character. */ 2150 2153 { … … 2162 2165 maximizing, find the maximum number of characters and work backwards. */ 2163 2166 2164 #if PCRE_UTF162165 DPRINTF(("matching %c{%d,%d}\n", fc, min, max));2166 #else2167 2167 DPRINTF(("matching %c{%d,%d} against subject %.*s\n", fc, min, max, 2168 2168 max, eptr)); 2169 #endif2170 2169 2171 2170 if ((ims & PCRE_CASELESS) != 0) … … 2241 2240 } 2242 2241 /* Control never gets here */ 2242 #endif 2243 2243 2244 2244 /* Match a negated single one-byte character. The character we are
Note:
See TracChangeset
for help on using the changeset viewer.