--- code/trunk/pcre_fullinfo.c 2007/05/29 15:18:18 168 +++ code/trunk/pcre_fullinfo.c 2007/06/04 10:49:21 169 @@ -139,6 +139,14 @@ case PCRE_INFO_DEFAULT_TABLES: *((const uschar **)where) = (const uschar *)(_pcre_default_tables); break; + + case PCRE_INFO_OKPARTIAL: + *((int *)where) = (re->options & PCRE_NOPARTIAL) == 0; + break; + + case PCRE_INFO_JCHANGED: + *((int *)where) = (re->options & PCRE_JCHANGED) != 0; + break; default: return PCRE_ERROR_BADOPTION; }