1
1

Fixed regexp error if current codepage isn't equal to UTF-8 in UTF-8 environment

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
Этот коммит содержится в:
Slava Zanko 2011-09-05 12:35:07 +03:00
родитель 20a79d52ab
Коммит 372cf39a4f

Просмотреть файл

@ -746,7 +746,7 @@ mc_search__cond_struct_new_init_regex (const char *charset, mc_search_t * lc_mc_
int erroffset;
int pcre_options = PCRE_EXTRA | PCRE_MULTILINE;
if (str_isutf8 (charset))
if (str_isutf8 (charset) && mc_global.utf8_display)
{
pcre_options |= PCRE_UTF8;
if (lc_mc_search->is_case_sensitive)