Fix bug in experimental conversion code.
This commit is contained in:
parent
660811e899
commit
7ca875b1db
|
@ -284,7 +284,7 @@ while (plength > 0)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (c < 256 && strchr("\\{}?*+[]()|.^$", c) != NULL)
|
if (c < 256 && strchr("\\{}?*+[]()|", c) != NULL)
|
||||||
{
|
{
|
||||||
PUTCHARS(STR_BACKSLASH);
|
PUTCHARS(STR_BACKSLASH);
|
||||||
}
|
}
|
||||||
|
|
|
@ -257,6 +257,10 @@
|
||||||
\= Expect no match
|
\= Expect no match
|
||||||
a1b
|
a1b
|
||||||
|
|
||||||
|
/how.to/
|
||||||
|
|
||||||
|
/^how to/
|
||||||
|
|
||||||
#pattern convert=unset
|
#pattern convert=unset
|
||||||
|
|
||||||
/abc/
|
/abc/
|
||||||
|
|
|
@ -411,6 +411,12 @@ a*b\+c+[def]\(ab\)(cd)
|
||||||
a1b
|
a1b
|
||||||
No match
|
No match
|
||||||
|
|
||||||
|
/how.to/
|
||||||
|
how.to
|
||||||
|
|
||||||
|
/^how to/
|
||||||
|
^how to
|
||||||
|
|
||||||
#pattern convert=unset
|
#pattern convert=unset
|
||||||
|
|
||||||
/abc/
|
/abc/
|
||||||
|
|
Loading…
Reference in New Issue