fix quote minify not escaping parentheses

This commit is contained in:
zawz 2021-06-30 09:44:17 +02:00
parent be4c043a08
commit aef06f4932

View file

@ -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;