| 2363 |
else if (count == PCRE_ERROR_PARTIAL) |
else if (count == PCRE_ERROR_PARTIAL) |
| 2364 |
{ |
{ |
| 2365 |
fprintf(outfile, "Partial match"); |
fprintf(outfile, "Partial match"); |
| 2366 |
#if !defined NODFA |
if (use_size_offsets > 1) |
| 2367 |
if ((all_use_dfa || use_dfa) && use_size_offsets > 2) |
{ |
| 2368 |
fprintf(outfile, ": %.*s", use_offsets[1] - use_offsets[0], |
fprintf(outfile, ": "); |
| 2369 |
bptr + use_offsets[0]); |
pchars(bptr + use_offsets[0], use_offsets[1] - use_offsets[0], |
| 2370 |
#endif |
outfile); |
| 2371 |
|
} |
| 2372 |
fprintf(outfile, "\n"); |
fprintf(outfile, "\n"); |
| 2373 |
break; /* Out of the /g loop */ |
break; /* Out of the /g loop */ |
| 2374 |
} |
} |