diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2010-08-14 14:37:13 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2010-08-14 14:37:13 +0000 |
commit | c5602787fca62e64a63b99e7ae3f310f72e2cac9 (patch) | |
tree | c03f412a77986b5f66e76ca2a1155ba7efc511f0 /ext/pcre/pcrelib/pcre_printint.src | |
parent | c1019643253d2d65d813358e1bc37ecf5dd365ed (diff) | |
download | php-git-c5602787fca62e64a63b99e7ae3f310f72e2cac9.tar.gz |
MFH: Upgraded bundled PCRE to version 8.10.
Diffstat (limited to 'ext/pcre/pcrelib/pcre_printint.src')
-rw-r--r-- | ext/pcre/pcrelib/pcre_printint.src | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/pcre/pcrelib/pcre_printint.src b/ext/pcre/pcrelib/pcre_printint.src index 86b02b5ca4..49d93174cc 100644 --- a/ext/pcre/pcrelib/pcre_printint.src +++ b/ext/pcre/pcrelib/pcre_printint.src @@ -534,6 +534,14 @@ for(;;) } break; + case OP_MARK: + case OP_PRUNE_ARG: + case OP_SKIP_ARG: + case OP_THEN_ARG: + fprintf(f, " %s %s", OP_names[*code], code + 2); + extra += code[1]; + break; + /* Anything else is just an item with no data*/ default: |