fix quote minify not escaping parentheses
This commit is contained in:
parent
be4c043a08
commit
aef06f4932
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ bool r_replace_var(_obj* in, strmap_t* varmap)
|
|||
}
|
||||
|
||||
const char* escaped_char=" \\\t!\"()|&*?~><#";
|
||||
const char* doublequote_escape_char=" \t'|&\\*?~><#";
|
||||
const char* doublequote_escape_char=" \t'|&\\*()?~><#";
|
||||
uint32_t count_escape_chars(std::string const& in, bool doublequote)
|
||||
{
|
||||
uint32_t r=0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue